adventofcode/2021/3/Makefile

12 lines
115 B
Makefile
Raw Normal View History

2022-12-01 21:02:00 +01:00
.PHONY := all build run
all: build run
build:
fpc -odiag diag.pas
fpc -odiag2 diag2.pas
run:
./diag
./diag2