Idris-dev/examples/Makefile
Andy Morris 23a28d5e21 Fix .PHONY targets in Makefiles
Phony targets should be dependencies of .PHONY, not the other way around.
2014-01-11 13:13:08 +01:00

9 lines
111 B
Makefile

check:
rm -f *.ibc
for x in *.idr ; do \
echo "Checking $$x"; \
idris --check $$x; \
done
.PHONY: check