oops - bc.mak also needs all prerequisites for its library-rules
authorClaus Gittinger <cg@exept.de>
Wed, 11 Apr 2007 12:30:51 +0200
changeset 10509 1c17129cf670
parent 10508 af67a731b6db
child 10510 f404894c7ea2
oops - bc.mak also needs all prerequisites for its library-rules
ApplicationDefinition.st
--- a/ApplicationDefinition.st	Wed Apr 11 12:25:24 2007 +0200
+++ b/ApplicationDefinition.st	Wed Apr 11 12:30:51 2007 +0200
@@ -1723,7 +1723,7 @@
 generatePreRequisiteLines_bc_dot_mak         
 
     ^ String streamContents:[:s |
-        self preRequisites do:[:eachPackage |
+        self allPreRequisites do:[:eachPackage |
             |mappings newObjectLine|
             mappings := self preRequisiteLine_bc_dot_mak_mappings: eachPackage.
             newObjectLine := self replaceMappings: mappings
@@ -1739,8 +1739,8 @@
             s nextPutAll:newObjectLine. 
             s cr. 
         ].
+    ]
 
-    ]
     "
      bosch_dapasx_application generatePreRequisiteLines_bc_dot_mak 
     "
@@ -1752,7 +1752,7 @@
 generateRequiredLibs_bc_dot_mak
     ^ String streamContents:[:s |
         s nextPutLine:' \'.
-        self preRequisites do:[:projectID | 
+        self allPreRequisites do:[:projectID | 
             s space; nextPutAll:(self libraryNameFor:projectID),'.dll'; nextPutLine:' \'.
         ].
 
@@ -1761,9 +1761,9 @@
                 s space; nextPutAll:eachFilename; nextPutLine:' \'.
             ].
         ].
-        self subProjects do:[:projectID | 
-            s space; nextPutAll:(self libraryNameFor:projectID),'.dll'; nextPutLine:' \'.
-        ].
+"/        self subProjects do:[:projectID | 
+"/            s space; nextPutAll:(self libraryNameFor:projectID),'.dll'; nextPutLine:' \'.
+"/        ].
         s cr.
     ].
 
@@ -1874,5 +1874,5 @@
 !ApplicationDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ApplicationDefinition.st,v 1.75 2007-04-11 10:25:24 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ApplicationDefinition.st,v 1.76 2007-04-11 10:30:51 cg Exp $'
 ! !