Files
kcpmtk/Makefile
Kyle Isom a60a6a3f59 preparing to do a cp/m cleanup
i wrote most of this up to here on a linux laptop, but some
changes need to be made to get it working with CP/M-80.
2023-10-03 20:59:03 -07:00

22 lines
307 B
Makefile

TARGETS := test dump undump
LIBS := binary.pas common.pas ihex.pas
FPC_FLAGS := -g -Mtp
FPC := fpc $(FPC_FLAGS)
.PHONY: all
all: $(TARGETS)
.PHONY: clean
clean:
rm -f *.o $(TARGETS)
test: test.pas $(LIBS)
$(FPC) $@.pas
undump: undump.pas $(LIBS)
$(FPC) $@.pas
dump: dump.pas $(LIBS)
$(FPC) $@.pas