19 lines
245 B
Makefile
19 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
|