initial import

This commit is contained in:
2023-10-03 01:54:45 -07:00
commit 465e0d1a34
5 changed files with 103 additions and 0 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
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