mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-03-08 03:47:59 -04:00
20 lines
221 B
Makefile
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)
|