ocaml-opentelemetry/Makefile
2022-05-03 13:52:20 -04:00

17 lines
201 B
Makefile

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