#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Fri, 08 Mar 2019 12:17:44 +0100
changeset 23858 bcca48f14f1d
parent 23857 4f6b0998041f
child 23859 dc4b4f2b9620
#DOCUMENTATION by cg class: ProjectDefinition class changed: #generateRequiredMakePrerequisites_make_dot_proto #generateRequiredMakeReferences_make_dot_proto
ProjectDefinition.st
--- a/ProjectDefinition.st	Fri Mar 08 12:17:24 2019 +0100
+++ b/ProjectDefinition.st	Fri Mar 08 12:17:44 2019 +0100
@@ -2963,7 +2963,6 @@
     "Created: / 23-01-2007 / 19:08:27 / cg"
 ! !
 
-
 !ProjectDefinition class methodsFor:'description - project information'!
 
 applicationAdditionalIconFileNames
@@ -4888,13 +4887,13 @@
     |libPath|
 
     ^ String streamContents:[:s |
-	"cg: changed to not go and remake librun"
-	(self allPreRequisitesSorted:#effectiveMandatoryPreRequisites "#effectivePreRequisites") do:[:projectID |
-	    libPath := self pathToPackage:projectID withSeparator:'/'.
-	    s tab; nextPutAll: 'cd ', libPath; nextPutLine:' && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES) "'.
-	].
-
-	s cr.
+        "cg: changed to not go and remake librun"
+        (self allPreRequisitesSorted:#effectiveMandatoryPreRequisites "#effectivePreRequisites") do:[:projectID |
+            libPath := self pathToPackage:projectID withSeparator:'/'.
+            s tab; nextPutAll: 'cd ', libPath; nextPutLine:' && $(MAKE) $(MAKE_ARGS) "CFLAGS_LOCAL=$(GLOBALDEFINES) "'.
+        ].
+
+        s cr.
     ].
 
     "
@@ -4903,6 +4902,7 @@
     "
 
     "Modified: / 03-03-2016 / 21:23:31 / cg"
+    "Modified: / 08-03-2019 / 12:12:43 / Claus Gittinger"
 !
 
 generateRequiredMakeReferences_bc_dot_mak
@@ -4944,12 +4944,12 @@
     preRequisites removeAllFoundIn:(self allPreRequisites:#mandatoryPreRequisites).
 
     ^ String streamContents:[:s |
-	preRequisites do:[:projectID |
-	    libPath := self pathToPackage:projectID withSeparator:'/'.
-	    s tab; nextPutAll: 'cd ', libPath; nextPutLine:' && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES) "'.
-	].
-
-	s cr.
+        preRequisites do:[:projectID |
+            libPath := self pathToPackage:projectID withSeparator:'/'.
+            s tab; nextPutAll: 'cd ', libPath; nextPutLine:' && $(MAKE) $(MAKE_ARGS) "CFLAGS_LOCAL=$(GLOBALDEFINES) "'.
+        ].
+
+        s cr.
     ].
 
     "
@@ -4958,6 +4958,7 @@
     "
 
     "Modified: / 03-03-2016 / 21:23:45 / cg"
+    "Modified: / 08-03-2019 / 12:12:52 / Claus Gittinger"
 !
 
 generateSubDirectories
@@ -5080,7 +5081,6 @@
     ^ self subProjectMakeCallsUsing:'call vcmake %1 %2'.
 ! !
 
-
 !ProjectDefinition class methodsFor:'file templates'!
 
 autopackage_default_dot_apspec