update to make digitalmars compile/link libraries

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20346 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott
2003-04-25 18:55:46 +00:00
parent 8a73873fa0
commit d56327cd06

22
src/makelib.sc Normal file
View File

@@ -0,0 +1,22 @@
##############################################################################
# Name: src/makelib.sc
# Purpose: build library Digital Mars 8.33 compiler
# Author: Chris Elliott
# Created: 21.01.03
# RCS-ID: $Id$
# Licence: wxWindows licence
##############################################################################
all: $(LIBTARGET)
$(LIBTARGET): $(OBJECTS)
lib -c $(LIBTARGET) $(OBJECTS)
clean:
-del $(THISDIR)\*.obj
-del $(LIBTARGET)