quox/tests/Makefile

27 lines
361 B
Makefile
Raw Normal View History

2022-04-27 14:07:08 -04:00
all: test
.PHONY: lib
lib:
make -C .. lib
depends/quox: lib
mkdir -p depends
ln -sf ../../build/ttc depends/quox
.PHONY: build-tests
build-tests: depends/quox
2022-04-27 14:07:08 -04:00
idris2 --build tests.ipkg
.PHONY: test
test: build-tests
build/exec/quox-tests -V 14
.PHONY: prove
prove: build-tests
prove build/exec/quox-tests
2022-04-27 14:07:08 -04:00
.PHONY: clean
clean:
rm -rf build depends