From 1cb007149eab53188131a51ed677311eb18f091b Mon Sep 17 00:00:00 2001 From: Bruno Cantero Date: Mon, 26 Jul 1999 16:25:20 +0000 Subject: [PATCH] Added file source/rdd/makefile.dos --- harbour/source/rdd/makefile.dos | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 harbour/source/rdd/makefile.dos diff --git a/harbour/source/rdd/makefile.dos b/harbour/source/rdd/makefile.dos new file mode 100644 index 0000000000..bdb3708de0 --- /dev/null +++ b/harbour/source/rdd/makefile.dos @@ -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