ProjectDefinition.st
changeset 11777 000651e1db46
parent 11752 484d542ad43f
child 11789 8d56dc5fa8a8
equal deleted inserted replaced
11776:17be54630802 11777:000651e1db46
  3220     |libPath|
  3220     |libPath|
  3221 
  3221 
  3222     ^ String streamContents:[:s |
  3222     ^ String streamContents:[:s |
  3223         (self allPreRequisitesSorted copyWith:'stx:librun') do:[:projectID |
  3223         (self allPreRequisitesSorted copyWith:'stx:librun') do:[:projectID |
  3224             libPath := self pathToPackage_unix:projectID.
  3224             libPath := self pathToPackage_unix:projectID.
  3225             s tab; nextPutAll: 'cd ', libPath; nextPutLine:' && $(MAKE)'.
  3225             s tab; nextPutAll: 'cd ', libPath; nextPutLine:' && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES)"'.
  3226         ].
  3226         ].
  3227 
  3227 
  3228         s cr.
  3228         s cr.
  3229     ].
  3229     ].
  3230 
  3230 
  4184 ! !
  4184 ! !
  4185 
  4185 
  4186 !ProjectDefinition class methodsFor:'documentation'!
  4186 !ProjectDefinition class methodsFor:'documentation'!
  4187 
  4187 
  4188 version
  4188 version
  4189     ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.220 2009-06-08 16:37:44 stefan Exp $'
  4189     ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.221 2009-06-16 18:33:37 stefan Exp $'
  4190 ! !
  4190 ! !
  4191 
  4191 
  4192 ProjectDefinition initialize!
  4192 ProjectDefinition initialize!