20 lines
287 B
Plaintext
20 lines
287 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)
|
|
|
|
$(HARBOURLIB): ${OBJPRG} $(OBJC)
|
|
ar r $(HARBOURLIB) ${OBJPRG} $(OBJC)
|
|
|
|
clean:
|
|
-del *.o
|