From: Chris Elliott Date: Fri, 25 Apr 2003 18:55:46 +0000 (+0000) Subject: update to make digitalmars compile/link libraries X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d56327cd0662d31960bea19c7570fd9854af1bd0?ds=inline update to make digitalmars compile/link libraries git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20346 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/makelib.sc b/src/makelib.sc new file mode 100644 index 0000000000..a14475acf3 --- /dev/null +++ b/src/makelib.sc @@ -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) +