10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-07-04 18:35:50 +02:00
QCaml/Makefile
2020-12-07 14:12:35 +01:00

27 lines
331 B
Makefile

# Frontend to dune.
.PHONY: default build install uninstall test clean
default: build
build:
dune build
doc:
dune build @doc
test:
dune runtest -f
install:
dune install
uninstall:
dune uninstall
clean:
dune clean
# Optionally, remove all files/folders ignored by git as defined
# in .gitignore (-X).
git clean -dfXq