8 lines
129 B
Makefile
8 lines
129 B
Makefile
.PHONY: all run
|
|
all:
|
|
idris2 --build pi.ipkg
|
|
run:
|
|
./build/exec/pi
|
|
test:
|
|
for file in ./tests/*; do ./build/exec/pi $$file; done
|