kcpmtk/Makefile

19 lines
259 B
Makefile
Raw Normal View History

2023-10-03 23:19:22 +00:00
TARGETS := test undump
2023-10-03 10:07:21 +00:00
LIBS := binary.pas ihex.pas
2023-10-03 08:54:45 +00:00
FPC_FLAGS := -g
FPC := fpc $(FPC_FLAGS)
.PHONY: all
all: $(TARGETS)
.PHONY: clean
clean:
rm -f *.o $(TARGETS)
test: test.pas $(LIBS)
$(FPC) $@.pas
2023-10-03 19:28:45 +00:00
undump: undump.pas binary.pas ihex.pas
$(FPC) $@.pas