mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-11-24 04:43:25 +03:00
10 lines
196 B
Makefile
10 lines
196 B
Makefile
IDRIS2 = ../../../idris2
|
|
INTERACTIVE ?= --interactive
|
|
|
|
test:
|
|
@../runtests $(IDRIS2) $(INTERACTIVE) --only $(only)
|
|
|
|
clean:
|
|
find . -name '*.ibc' | xargs rm -f
|
|
find . -name 'output' | xargs rm -f
|