17 lines
139 B
Makefile
17 lines
139 B
Makefile
|
|
.PHONY: build clean test
|
|
|
|
build:
|
|
dune build
|
|
|
|
test:
|
|
dune runtest
|
|
|
|
install:
|
|
dune install
|
|
|
|
uninstall:
|
|
dune uninstall
|
|
|
|
clean:
|
|
dune clean
|