Do not install .lib files of class libraries in bc.mak.
authorStefan Vogel <sv@exept.de>
Thu, 18 Jan 2007 09:33:07 +0100
changeset 10335 b8f9c0de965a
parent 10334 6fe7d98b0c7b
child 10336 ca2e0bfd277b
Do not install .lib files of class libraries in bc.mak. Only librun.lib is needed.
LibraryDefinition.st
--- a/LibraryDefinition.st	Wed Jan 17 14:29:15 2007 +0100
+++ b/LibraryDefinition.st	Thu Jan 18 09:33:07 2007 +0100
@@ -174,7 +174,7 @@
 
 OBJS= $(COMMON_OBJS) $(WIN32_OBJS)
 
-ALL::  %(ADDITIONAL_TARGETS) $(LIBDIR)\$(LIBNAME).lib $(BINDIR)\$(LIBNAME).dll
+ALL:: %(ADDITIONAL_TARGETS) $(BINDIR)\$(LIBNAME).dll
 
 !!INCLUDE $(TOP)\rules\stdRules_bc
 
@@ -606,5 +606,5 @@
 !LibraryDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/LibraryDefinition.st,v 1.76 2007-01-16 12:58:29 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/LibraryDefinition.st,v 1.77 2007-01-18 08:33:07 stefan Exp $'
 ! !