mirror of
https://github.com/ocaml-tracing/ocaml-trace.git
synced 2026-03-08 03:47:57 -04:00
19 lines
238 B
Makefile
19 lines
238 B
Makefile
|
|
DUNE_OPTS?=
|
|
all:
|
|
dune build @all $(DUNE_OPTS)
|
|
|
|
clean:
|
|
@dune clean
|
|
|
|
test:
|
|
@dune runtest $(DUNE_OPTS)
|
|
|
|
doc:
|
|
@dune build $(DUNE_OPTS) @doc
|
|
|
|
WATCH?= @install @runtest
|
|
watch:
|
|
dune build $(DUNE_OPTS) -w $(WATCH)
|
|
|
|
.PHONY: test clean watch
|