pi/makefile

10 lines
164 B
Makefile
Raw Permalink Normal View History

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