mirror of
https://github.com/ilyakooo0/Idris-dev.git
synced 2024-11-15 11:56:18 +03:00
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
|