Idris2-boot/tests/Makefile
Edwin Brady 24fed4feea Rename everything idris2boot, increment version
From here on, this repo is intended only as a bootstrapping step for the
self hosted Idris 2. It will - as long as possible - be kept up to date
enough that it can build Idris 2, but won't be maintained beyond that.
2020-05-20 13:23:00 +01:00

10 lines
200 B
Makefile

IDRIS2 = ../../../idris2boot
INTERACTIVE ?= --interactive
test:
@../runtests $(IDRIS2) $(INTERACTIVE) --only $(only)
clean:
find . -name '*.ibc' | xargs rm -f
find . -name 'output' | xargs rm -f