LibraryDefinition.st
changeset 14858 a34396484b3c
parent 14807 5bd606db09d7
child 14879 3839afabb9f9
child 18028 e39da2aa21bc
--- a/LibraryDefinition.st	Mon Mar 11 21:18:44 2013 +0100
+++ b/LibraryDefinition.st	Mon Mar 11 21:49:52 2013 +0100
@@ -130,16 +130,16 @@
 bc_dot_mak_mappings
     |d resFileName|
 
-    resFileName := (self package copyFrom:(self package lastIndexOfAny:':/')+1),'.res'.
+    resFileName := (self package copyFrom:(self package lastIndexOfAny:':/')+1),'.$(RES)'.
 
     d := super bc_dot_mak_mappings.
     d
-	at: 'LIBRARY_NAME' put: ( self libraryName );
-	at: 'COMMONSYMFLAG' put: (self commonSymbolsFlag);
-	at: 'HEADEROUTPUTARG' put: (self headerFileOutputArg);
-	at: 'RESFILENAME' put: resFileName;
-	at: 'DEPENDENCIES' put: (self generateDependencies_win32);
-	yourself.
+        at: 'LIBRARY_NAME' put: ( self libraryName );
+        at: 'COMMONSYMFLAG' put: (self commonSymbolsFlag);
+        at: 'HEADEROUTPUTARG' put: (self headerFileOutputArg);
+        at: 'RESFILENAME' put: resFileName;
+        at: 'DEPENDENCIES' put: (self generateDependencies_win32);
+        yourself.
     ^ d.
 
     "Created: / 09-08-2006 / 11:44:36 / fm"
@@ -705,10 +705,10 @@
 !LibraryDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/LibraryDefinition.st,v 1.112 2013-02-28 11:15:51 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/LibraryDefinition.st,v 1.113 2013-03-11 20:49:52 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/LibraryDefinition.st,v 1.112 2013-02-28 11:15:51 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/LibraryDefinition.st,v 1.113 2013-03-11 20:49:52 cg Exp $'
 ! !