dune/Makefile

21 lines
285 B
Makefile
Raw Normal View History

2017-02-25 14:06:03 +00:00
BIN := ./_build/default/bin/main.exe
2016-12-02 13:54:32 +00:00
default: boot.exe
./boot.exe -j 4 --dev
boot.exe: bootstrap.ml
ocaml bootstrap.ml
2016-12-02 13:54:32 +00:00
install:
2017-02-25 14:06:03 +00:00
$(BIN) install
2016-12-02 13:54:32 +00:00
uninstall:
2017-02-25 14:06:03 +00:00
$(BIN) uninstall
2016-12-02 13:54:32 +00:00
reinstall: uninstall reinstall
clean:
rm -rf _build
.PHONY: default install uninstall reinstall clean