adventofcode/2021/3/Makefile
2022-12-01 21:02:00 +01:00

12 lines
115 B
Makefile

.PHONY := all build run
all: build run
build:
fpc -odiag diag.pas
fpc -odiag2 diag2.pas
run:
./diag
./diag2