13 lines
127 B
Makefile
13 lines
127 B
Makefile
.PHONY: all clean test doc
|
|
|
|
all:
|
|
dune build
|
|
|
|
clean:
|
|
dune clean
|
|
|
|
test:
|
|
dune runtest --profile=release
|
|
|
|
doc:
|
|
dune build @doc
|