quox/exe/Makefile

17 lines
224 B
Makefile

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