Idris-dev/examples/Makefile

9 lines
112 B
Makefile
Raw Normal View History

2012-01-07 03:20:03 +04:00
check: .PHONY
2012-01-25 00:20:44 +04:00
rm -f *.ibc
2012-01-07 03:20:03 +04:00
for x in *.idr ; do \
echo "Checking $$x"; \
idris --check $$x; \
done
.PHONY: