ocaml-opentelemetry/Makefile
2023-09-13 14:19:09 -04:00

21 lines
253 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)