ocaml-opentelemetry/Makefile
Simon Cruanes dbd23b2f7d
format
2022-05-03 13:52:21 -04:00

20 lines
221 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 fmt
WATCH ?= @all
watch:
@dune build $(WATCH) -w $(OPTS)