20 lines
170 B
Makefile
20 lines
170 B
Makefile
|
|
.PHONY: build clean test
|
||
|
|
|
||
|
|
build:
|
||
|
|
dune build @install
|
||
|
|
|
||
|
|
test:
|
||
|
|
dune runtest
|
||
|
|
|
||
|
|
install:
|
||
|
|
dune install
|
||
|
|
|
||
|
|
uninstall:
|
||
|
|
dune uninstall
|
||
|
|
|
||
|
|
doc:
|
||
|
|
dune build @doc
|
||
|
|
|
||
|
|
clean:
|
||
|
|
dune clean
|