mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-07 06:33:39 +01:00
28 lines
332 B
Makefile
28 lines
332 B
Makefile
# Frontend to dune.
|
|
|
|
.PHONY: default build install uninstall test clean
|
|
|
|
default: build
|
|
|
|
tangle:
|
|
|
|
doc:
|
|
|
|
build:
|
|
dune build
|
|
|
|
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
|