mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-24 06:52:19 +03:00
19 lines
445 B
Makefile
19 lines
445 B
Makefile
INTERACTIVE ?= --interactive
|
|
threads ?= `nproc`
|
|
|
|
.PHONY: testbin test
|
|
|
|
test:
|
|
./build/exec/runtests $(IDRIS2) $(INTERACTIVE) --threads $(threads) --only $(only)
|
|
|
|
testbin:
|
|
${IDRIS2} --build tests.ipkg
|
|
|
|
clean:
|
|
$(RM) -r build
|
|
$(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 {} \;
|