mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-25 20:51:43 +03:00
11 lines
233 B
Makefile
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
|