ocaml-opentelemetry/Makefile
2022-03-16 15:58:08 -04:00

14 lines
169 B
Makefile

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