#additionalDefinitions for both bc_dot_mak and make_dot_proto
authorStefan Vogel <sv@exept.de>
Mon, 03 Aug 2009 14:24:18 +0200
changeset 11829 2d880f341cfc
parent 11828 b7fc2ba68121
child 11830 3ecc9e639f0b
#additionalDefinitions for both bc_dot_mak and make_dot_proto
ProjectDefinition.st
--- a/ProjectDefinition.st	Fri Jul 31 10:49:19 2009 +0200
+++ b/ProjectDefinition.st	Mon Aug 03 14:24:18 2009 +0200
@@ -1479,6 +1479,12 @@
 
 !ProjectDefinition class methodsFor:'description - compilation'!
 
+additionalDefinitions
+    "allows for additional definitions/rules to be added to the make.proto and bc.mak file."
+
+    ^ ''
+!
+
 additionalDefinitions_bc_dot_mak
     "allows for additional definitions/rules to be added to the bc.mak file.
      Subclasses may redefine this."
@@ -1491,7 +1497,7 @@
 additionalDefinitions_make_dot_proto
     "allows for additional definitions/rules to be added to the make.proto file."
 
-    ^ ''
+    ^ self additionalDefinitions
 
     "Created: / 22-08-2006 / 23:53:08 / cg"
 !
@@ -1499,7 +1505,7 @@
 additionalDefinitions_nt_dot_mak
     "obsolete - kept for compatibility with old project files"
 
-    ^ ''
+    ^ self additionalDefinitions
 
     "Created: / 22-08-2006 / 23:59:32 / cg"
 !
@@ -4186,7 +4192,7 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.222 2009-07-01 10:44:03 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.223 2009-08-03 12:24:18 stefan Exp $'
 ! !
 
 ProjectDefinition initialize!