mirror of
https://github.com/ilyakooo0/Idris-dev.git
synced 2024-11-15 01:25:05 +03:00
23a28d5e21
Phony targets should be dependencies of .PHONY, not the other way around.
9 lines
111 B
Makefile
9 lines
111 B
Makefile
check:
|
|
rm -f *.ibc
|
|
for x in *.idr ; do \
|
|
echo "Checking $$x"; \
|
|
idris --check $$x; \
|
|
done
|
|
|
|
.PHONY: check
|