quox/tests/Makefile
2022-04-27 20:10:47 +02:00

18 lines
245 B
Makefile

all: test
.PHONY: lib
lib:
make -C .. lib
depends/quox: lib
mkdir -p depends
ln -sf ../../build/ttc depends/quox
.PHONY: test
test: depends/quox
idris2 --build tests.ipkg
build/exec/quox-tests
.PHONY: clean
clean:
rm -rf build depends