Add python-eventlet 0.16.1
[packages/trusty/python-eventlet.git] / eventlet / doc / Makefile
1 # Makefile for Sphinx documentation
2 #
3
4 # You can set these variables from the command line.
5 SPHINXOPTS    =
6 SPHINXBUILD   = PYTHONPATH=../:$(PYTHONPATH) sphinx-build
7 PAPER         =
8
9 # Internal variables.
10 PAPEROPT_a4     = -D latex_paper_size=a4
11 PAPEROPT_letter = -D latex_paper_size=letter
12 ALLSPHINXOPTS   = -d _build/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
13
14 .PHONY: help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest
15
16 help:
17         @echo "Please use \`make <target>' where <target> is one of"
18         @echo "  html      to make standalone HTML files"
19         @echo "  dirhtml   to make HTML files named index.html in directories"
20         @echo "  pickle    to make pickle files"
21         @echo "  json      to make JSON files"
22         @echo "  htmlhelp  to make HTML files and a HTML help project"
23         @echo "  qthelp    to make HTML files and a qthelp project"
24         @echo "  latex     to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
25         @echo "  changes   to make an overview of all changed/added/deprecated items"
26         @echo "  linkcheck to check all external links for integrity"
27         @echo "  doctest   to run all doctests embedded in the documentation (if enabled)"
28         @echo "  coverage  to generate a docstring coverage report"
29
30 clean:
31         -rm -rf _build/*
32
33 html:
34         $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) _build/html
35         @echo
36         @echo "Build finished. The HTML pages are in _build/html."
37
38 dirhtml:
39         $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) _build/dirhtml
40         @echo
41         @echo "Build finished. The HTML pages are in _build/dirhtml."
42
43 pickle:
44         $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) _build/pickle
45         @echo
46         @echo "Build finished; now you can process the pickle files."
47
48 json:
49         $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) _build/json
50         @echo
51         @echo "Build finished; now you can process the JSON files."
52
53 htmlhelp:
54         $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) _build/htmlhelp
55         @echo
56         @echo "Build finished; now you can run HTML Help Workshop with the" \
57               ".hhp project file in _build/htmlhelp."
58
59 qthelp:
60         $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) _build/qthelp
61         @echo
62         @echo "Build finished; now you can run "qcollectiongenerator" with the" \
63               ".qhcp project file in _build/qthelp, like this:"
64         @echo "# qcollectiongenerator _build/qthelp/Eventlet.qhcp"
65         @echo "To view the help file:"
66         @echo "# assistant -collectionFile _build/qthelp/Eventlet.qhc"
67
68 latex:
69         $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) _build/latex
70         @echo
71         @echo "Build finished; the LaTeX files are in _build/latex."
72         @echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
73               "run these through (pdf)latex."
74
75 changes:
76         $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) _build/changes
77         @echo
78         @echo "The overview file is in _build/changes."
79
80 linkcheck:
81         $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) _build/linkcheck
82         @echo
83         @echo "Link check complete; look for any errors in the above output " \
84               "or in _build/linkcheck/output.txt."
85
86 doctest:
87         $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) _build/doctest
88         @echo "Testing of doctests in the sources finished, look at the " \
89               "results in _build/doctest/output.txt."
90               
91 coverage:
92         $(SPHINXBUILD) -b coverage $(ALLSPHINXOPTS) _build/coverage
93         @echo "Coverage report finished, look at the " \
94                   "results in _build/coverage/python.txt."