1 # Makefile for Sphinx documentation
4 # You can set these variables from the command line.
6 SPHINXBUILD
= bin
/sphinx-build
10 PAPEROPT_a4
= -D latex_paper_size
=a4
11 PAPEROPT_letter
= -D latex_paper_size
=letter
12 ALLSPHINXOPTS
= -d .build
/doctrees
$(PAPEROPT_
$(PAPER
)) $(SPHINXOPTS
) .
14 .PHONY
: help
clean html web pickle htmlhelp latex changes linkcheck
17 @echo
"Please use \`make <target>' where <target> is one of"
18 @echo
" html to make standalone HTML files"
19 @echo
" pickle to make pickle files (usable by e.g. sphinx-web)"
20 @echo
" htmlhelp to make HTML files and a HTML help project"
21 @echo
" latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
22 @echo
" changes to make an overview over all changed/added/deprecated items"
23 @echo
" linkcheck to check all external links for integrity"
29 mkdir
-p .build
/html .build
/doctrees
30 $(SPHINXBUILD
) -b html
$(ALLSPHINXOPTS
) .build
/html
32 @echo
"Build finished. The HTML pages are in .build/html."
35 mkdir
-p .build
/pickle .build
/doctrees
36 $(SPHINXBUILD
) -b pickle
$(ALLSPHINXOPTS
) .build
/pickle
38 @echo
"Build finished; now you can process the pickle files or run"
39 @echo
" sphinx-web .build/pickle"
40 @echo
"to start the sphinx-web server."
45 mkdir
-p .build
/htmlhelp .build
/doctrees
46 $(SPHINXBUILD
) -b htmlhelp
$(ALLSPHINXOPTS
) .build
/htmlhelp
48 @echo
"Build finished; now you can run HTML Help Workshop with the" \
49 ".hhp project file in .build/htmlhelp."
52 mkdir
-p .build
/latex .build
/doctrees
53 $(SPHINXBUILD
) -b latex
$(ALLSPHINXOPTS
) .build
/latex
55 @echo
"Build finished; the LaTeX files are in .build/latex."
56 @echo
"Run \`make all-pdf' or \`make all-ps' in that directory to" \
57 "run these through (pdf)latex."
60 mkdir
-p .build
/changes .build
/doctrees
61 $(SPHINXBUILD
) -b changes
$(ALLSPHINXOPTS
) .build
/changes
63 @echo
"The overview file is in .build/changes."
66 mkdir
-p .build
/linkcheck .build
/doctrees
67 $(SPHINXBUILD
) -b linkcheck
$(ALLSPHINXOPTS
) .build
/linkcheck
69 @echo
"Link check complete; look for any errors in the above output " \
70 "or in .build/linkcheck/output.txt."