bc.def - no longer generated it is now in rules\bc_dll.def or
authorStefan Vogel <sv@exept.de>
Fri, 12 Jan 2007 19:45:07 +0100
changeset 10317 f554c4f5e78f
parent 10316 b617a026a146
child 10318 bef855ddbb59
bc.def - no longer generated it is now in rules\bc_dll.def or rules\bc_exe.def
ProjectDefinition.st
--- a/ProjectDefinition.st	Fri Jan 12 19:44:53 2007 +0100
+++ b/ProjectDefinition.st	Fri Jan 12 19:45:07 2007 +0100
@@ -992,10 +992,6 @@
     "
 !
 
-defaultDescription
-    ^ 'description'
-!
-
 defaultProjectType
     ^ self libraryTypes first
     "/ ^ self applicationTypes first
@@ -1830,20 +1826,6 @@
     "Modified: / 20-10-2006 / 16:31:08 / cg"
 !
 
-generate_bc_dot_def                         
-
-    ^self replaceMappings: self bc_dot_def_mappings 
-            in: self bc_dot_def
-
-"
-  DapasXProject generate_bc_dot_def
-  DapasX_Datenbasis generate_bc_dot_def
-
-"
-
-    "Modified: / 09-08-2006 / 11:30:42 / fm"
-!
-
 generate_bc_dot_mak         
     ^ (self 
         replaceMappings: self bc_dot_mak_mappings 
@@ -2057,7 +2039,9 @@
 !ProjectDefinition class methodsFor:'file templates'!
 
 bc_dot_mak
-    "the file template for bc.mak files"
+    "answer a template for the bc.mak makefile.
+     Any variable definition %(Variable) will be later replaced by the mapping.
+     $% characters have to be duplicated"
 
     ^ self subclassResponsibility
 !
@@ -2420,21 +2404,6 @@
 
 !ProjectDefinition class methodsFor:'mappings'!
 
-bc_dot_def_mappings
-    ^ (Dictionary new)
-        at:'DESCRIPTION'
-            put:[
-                    |d|
-
-                    d := self description.
-                    (d isEmptyOrNil ifTrue:[ self defaultDescription ] ifFalse:[ d ]) storeString.
-                ];
-        yourself
-
-    "Created: / 09-08-2006 / 11:17:59 / fm"
-    "Modified: / 14-09-2006 / 18:51:17 / cg"
-!
-
 bc_dot_mak_mappings
     |d|
 
@@ -3702,7 +3671,7 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.134 2007-01-12 13:37:02 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.135 2007-01-12 18:45:07 stefan Exp $'
 ! !
 
 ProjectDefinition initialize!