10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-02 19:35:20 +02:00
QCaml/Makefile
2020-09-26 12:02:53 +02:00

24 lines
308 B
Makefile

# Frontend to dune.
.PHONY: default build install uninstall test clean
default: build
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