pi/makefile

8 lines
129 B
Makefile
Raw Normal View History

.PHONY: all run
2022-04-23 15:18:06 +02:00
all:
idris2 --build pi.ipkg
run:
./build/exec/pi
test:
for file in ./tests/*; do ./build/exec/pi $$file; done