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) +