pi/makefile

10 lines
164 B
Makefile

.PHONY: all run
all:
idris2 --build pi.ipkg
clean:
idris2 --clean pi.ipkg
run:
./build/exec/pi
test:
@for file in ./tests/*.pi; do ./build/exec/pi $$file; done