mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-03-07 18:37:56 -05:00
14 lines
169 B
Makefile
14 lines
169 B
Makefile
|
|
OPTS=--profile=release
|
|
all:
|
|
@dune build @all $(OPTS)
|
|
|
|
test:
|
|
@dune runtest --force $(OPTS)
|
|
|
|
clean:
|
|
@dune clean
|
|
|
|
WATCH ?= @all
|
|
watch:
|
|
@dune build $(WATCH) -w $(OPTS)
|