quox/Makefile

28 lines
322 B
Makefile
Raw Normal View History

2022-05-01 11:11:13 -04:00
all: quox
quox: exe
cp exe/build/exec/quox .
2022-04-27 14:07:08 -04:00
.PHONY: lib
lib:
idris2 --build quox.ipkg
.PHONY: exe
2022-05-01 11:11:13 -04:00
exe:
2022-05-01 20:41:00 -04:00
$(MAKE) -C exe exe
2022-04-27 14:07:08 -04:00
.PHONY: test
test:
2022-05-01 20:41:00 -04:00
$(MAKE) -C tests test
.PHONY: prove
prove:
$(MAKE) -C tests prove
2022-04-27 14:07:08 -04:00
.PHONY: clean
clean:
2022-05-01 20:41:00 -04:00
$(RM) -r build depends
$(RM) quox
$(MAKE) -C exe clean
$(MAKE) -C tests clean