From 8c7fbd63da448fc82dd175abc6fd08855117c35d Mon Sep 17 00:00:00 2001
From: Miklos Magyari <miklos.magyari@sigmatechnology.se>
Date: Thu, 7 Apr 2022 16:53:34 +0200
Subject: [PATCH] Fixed Makefile for parallel builds (issue #592)

Signed-off-by: Miklos Magyari <miklos.magyari@sigmatechnology.se>
---
 core/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/Makefile b/core/Makefile
index a9972a9cd..7b2b8cbd1 100644
--- a/core/Makefile
+++ b/core/Makefile
@@ -275,8 +275,8 @@ run: all
 
 # xsd -> ttcn
 $(GENERATED_MODULES): $(SCHEMAS) ../xsdconvert/xsd2ttcn$(EXESUFFIX)
-	../xsdconvert/xsd2ttcn$(EXESUFFIX) -p $<
-	sed -e 's/XSD.String/charstring/g;s/XSD.AnySimpleType/charstring/g;s/XSD.Integer/integer/g;s/XSD.Float/float/g;s/XSD.Double/float/g;s/XSD.Boolean/boolean/g;s/import from XSD all;//g' TitanLoggerApi.ttcn >TitanLoggerApi.ttcn_
+	../xsdconvert/xsd2ttcn$(EXESUFFIX) -p $< ;\
+	sed -e 's/XSD.String/charstring/g;s/XSD.AnySimpleType/charstring/g;s/XSD.Integer/integer/g;s/XSD.Float/float/g;s/XSD.Double/float/g;s/XSD.Boolean/boolean/g;s/import from XSD all;//g' TitanLoggerApi.ttcn >TitanLoggerApi.ttcn_ ;\
 	mv TitanLoggerApi.ttcn_ TitanLoggerApi.ttcn
 
 install: $(TARGETS) $(PROGRAMS)
-- 
GitLab