pi/makefile
depsterr 24604a93ef identity types !
removed values that should not be
improved eliminator computation
improved conversion
2022-07-26 06:09:57 +02:00

8 lines
133 B
Makefile

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