Idris2/tests/Makefile
2021-03-16 14:03:46 +00:00

18 lines
428 B
Makefile

INTERACTIVE ?= --interactive
threads ?= `nproc`
.PHONY: testbin test
test:
./build/exec/runtests $(IDRIS2) $(INTERACTIVE) --threads $(threads) --only $(only)
testbin:
${IDRIS2_BOOT} --build tests.ipkg
clean:
$(RM) -r build
@find . -type f -name 'output' -exec rm -rf {} \;
@find . -type f -name '*.ttc' -exec rm -f {} \;
@find . -type f -name '*.ttm' -exec rm -f {} \;
@find . -type f -name '*.ibc' -exec rm -f {} \;