mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-13 17:43:41 +01:00
39 lines
664 B
Makefile
39 lines
664 B
Makefile
# Frontend to dune.
|
|
|
|
# No implicit rules
|
|
MAKEFLAGS += --no-builtin-rules
|
|
.SUFFIXES:
|
|
|
|
DIRS=$(shell ls */README.org | sed "s|/README.org||g")
|
|
DOCS=$(patsubst %, docs/%.html, $(DIRS)) docs/index.html
|
|
|
|
.PHONY: default build install uninstall test clean doc
|
|
|
|
default: doc build
|
|
|
|
docs/%.html: %/*.org %/lib/*.ml %/lib/*.mli %/test/*.ml
|
|
- ./bin/tangle.sh $*
|
|
|
|
docs/top.html: */*.org */lib/*.ml */lib/*.mli
|
|
- ./bin/tangle.sh top
|
|
|
|
doc: $(DOCS)
|
|
|
|
build: doc
|
|
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
|