2017-01-13 20:32:27 +01:00
|
|
|
# Minimal makefile for Sphinx documentation
|
|
|
|
#
|
|
|
|
|
|
|
|
# You can set these variables from the command line.
|
|
|
|
SPHINXOPTS = -j $(CPUS)
|
|
|
|
SPHINXBUILD = sphinx-build
|
|
|
|
SPHINXPROJ = sdfsdf
|
2017-01-13 23:20:40 +01:00
|
|
|
SOURCEDIR = rst
|
2017-01-13 20:32:27 +01:00
|
|
|
BUILDDIR = _build
|
|
|
|
|
|
|
|
# Put it first so that "make" without argument is like "make help".
|
|
|
|
help:
|
2017-01-13 23:20:40 +01:00
|
|
|
$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
2017-01-13 20:32:27 +01:00
|
|
|
|
|
|
|
.PHONY: help Makefile.sphinx
|
|
|
|
|
|
|
|
# Catch-all target: route all unknown targets to Sphinx using the new
|
|
|
|
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
|
|
|
%: Makefile.sphinx
|
|
|
|
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|