Idris2/tests/Makefile
2020-05-19 20:06:37 +01:00

11 lines
233 B
Makefile

INTERACTIVE ?= --interactive
test:
$(RM) -rf build
${IDRIS2_BOOT} --build tests.ipkg
@./build/exec/runtests $(IDRIS2) $(INTERACTIVE) --only $(only)
clean:
find . -name '*.ibc' | xargs rm -f
find . -name 'output' | xargs rm -f