This commit is contained in:
swrup 2025-11-11 02:07:51 +01:00
parent aa2ff7b2f0
commit 2f3113f55d
11742 changed files with 1223940 additions and 0 deletions

View file

@ -0,0 +1,38 @@
INSTALL_ARGS := $(if $(PREFIX),--prefix $(PREFIX),)
# Default rule
default:
dune build --auto-promote @install
install:
dune install $(INSTALL_ARGS)
uninstall:
dune uninstall $(INSTALL_ARGS)
reinstall: uninstall reinstall
test:
dune runtest
doc:
dune build @doc
clean:
dune clean
all-supported-ocaml-versions:
dune build @install --workspace dune-workspace.dev --root .
opam-release:
dune-release distrib --skip-build --skip-lint --skip-tests
dune-release publish distrib --verbose
dune-release opam pkg
dune-release opam submit
bench:
dune build bench --profile release
dune exec bench/bench.exe
.PHONY: default install uninstall reinstall clean test doc bench
.PHONY: all-supported-ocaml-versions opam-release