ProjectDefinition.st
changeset 11980 e5082f92b1c7
parent 11979 d2afd6b5fc01
child 11981 e479249ba36e
--- a/ProjectDefinition.st	Mon Sep 21 10:08:28 2009 +0200
+++ b/ProjectDefinition.st	Mon Sep 21 10:10:48 2009 +0200
@@ -2455,6 +2455,11 @@
     "the template code for the bmake.bat file"
 
     ^ '
+REM -------
+REM make using borland bcc
+REM type bmake, and wait...
+REM do not edit - automatically generated from ProjectDefinition
+REM -------
 make.exe -N -f bc.mak %%1 %%2
 
 %(SUBPROJECT_BMAKE_CALLS)
@@ -2476,6 +2481,11 @@
     "the template code for the lcmake.bat file"
 
     ^ '
+REM -------
+REM make using lcc compiler
+REM type lcmake, and wait...
+REM do not edit - automatically generated from ProjectDefinition
+REM -------
 make.exe -N -f bc.mak USELCC=1 %%1 %%2
 
 %(SUBPROJECT_LCCMAKE_CALLS)
@@ -2613,6 +2623,11 @@
     "the template code for the vcmake.bat file"
 
     ^ '
+REM -------
+REM make using microsoft visual c
+REM type vcmake, and wait...
+REM do not edit - automatically generated from ProjectDefinition
+REM -------
 make.exe -N -f bc.mak USEVC=1 %%1 %%2
 
 %(SUBPROJECT_VCMAKE_CALLS)
@@ -4320,7 +4335,7 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.228 2009-09-21 08:08:28 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.229 2009-09-21 08:10:48 cg Exp $'
 ! !
 
 ProjectDefinition initialize!