22 lines
384 B
Plaintext
22 lines
384 B
Plaintext
# $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) $(DBFNTXLIB)
|
|
|
|
$(HARBOURLIB): ${OBJPRG} $(OBJC)
|
|
ar r $(HARBOURLIB) dbcmd.o rddsys.o dbf0.o dbf1.o
|
|
$(DBFNTXLIB): ${OBJPRG} $(OBJC)
|
|
ar r $(DBFNTXLIB) dbfntx0.o dbfntx1.o
|
|
|
|
clean:
|
|
-del *.o
|