23 lines
262 B
Makefile
23 lines
262 B
Makefile
all: quox
|
|
|
|
quox: exe
|
|
cp exe/build/exec/quox .
|
|
|
|
.PHONY: lib
|
|
lib:
|
|
idris2 --build quox.ipkg
|
|
|
|
.PHONY: exe
|
|
exe:
|
|
make -C exe exe
|
|
|
|
.PHONY: test
|
|
test:
|
|
make -C tests test
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf build depends
|
|
rm -f quox
|
|
make -C exe clean
|
|
make -C tests clean
|