blob: 8bb5b9e49ab9b4a4519aefb8082b2ab7f1b92bec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Minimal makefile for Sphinx documentation
#
# You can set these variables from the command line.
SPHINXOPTS = -a
SPHINXBUILD = sphinx-build
SPHINXPROJ = sparse
SOURCEDIR = .
BUILDDIR = build
targets := help
targets += html
# Put it first so that "make" without argument is like "make help".
help:
# route all targets to Sphinx using the new "make mode" option.
$(targets): conf.py Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS)
.PHONY: Makefile # avoid circular deps with the catch-all rule
|