kcpmtk/Makefile

18 lines
226 B
Makefile
Raw Normal View History

2023-10-03 08:54:45 +00:00
TARGETS := hello test
LIBS := binary.inc
FPC_FLAGS := -g
FPC := fpc $(FPC_FLAGS)
.PHONY: all
all: $(TARGETS)
.PHONY: clean
clean:
rm -f *.o $(TARGETS)
hello: hello.pas
$(FPC) $@.pas
test: test.pas $(LIBS)
$(FPC) $@.pas