Added file source/rdd/makefile.dos

This commit is contained in:
Bruno Cantero
1999-07-26 16:25:20 +00:00
parent 12cbb40cf4
commit 1cb007149e

View File

@@ -0,0 +1,19 @@
# $Id$
# Make file for DOS DJGPP
#
include ../../makedos.env
SRCPRG:= $(wildcard *.prg)
CPRG=$(SRCPRG:.prg=.c)
OBJPRG=$(CPRG:.c=.o)
SRCC:= $(wildcard *.c)
OBJC=$(SRCC:.c=.o)
all: $(HARBOURLIB)
$(HARBOURLIB): ${OBJPRG} $(OBJC)
ar r $(HARBOURLIB) ${OBJC} ${OBJPRG}
clean:
-del *.o