ocaml-opentelemetry/Makefile
Simon Cruanes 0d11e9ece5
chore
2022-06-09 11:29:20 -04:00

20 lines
228 B
Makefile

OPTS=--profile=release
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)