ocaml-opentelemetry/Makefile
2023-09-06 23:37:54 -04:00

20 lines
254 B
Makefile

OPTS="--profile=release --ignore-promoted-rules"
all:
@dune build @all $(OPTS)
test:
@dune runtest --force $(OPTS)
clean:
@dune clean
protoc-gen:
@dune build @lint
format:
@dune build @fmt
WATCH ?= @all
watch:
@dune build $(WATCH) -w $(OPTS)