I got the relative magnitudes of the timeout increases reversed, so
[python.git] / Doc / Makefile
blob146e1b35595cee0c136cc8e7d4e8768bb3a6e987
2 # Makefile for Python documentation
3 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6 # You can set these variables from the command line.
7 PYTHON = python
8 SVNROOT = http://svn.python.org/projects
9 SPHINXOPTS =
10 PAPER =
11 SOURCES =
12 DISTVERSION = $(shell $(PYTHON) tools/sphinxext/patchlevel.py)
14 ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_paper_size=$(PAPER) \
15 $(SPHINXOPTS) . build/$(BUILDER) $(SOURCES)
17 .PHONY: help checkout update build html htmlhelp clean coverage dist check
19 help:
20 @echo "Please use \`make <target>' where <target> is one of"
21 @echo " html to make standalone HTML files"
22 @echo " htmlhelp to make HTML files and a HTML help project"
23 @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
24 @echo " text to make plain text files"
25 @echo " changes to make an overview over all changed/added/deprecated items"
26 @echo " linkcheck to check all external links for integrity"
27 @echo " suspicious to check for suspicious markup in output text"
28 @echo " coverage to check documentation coverage for library and C API"
29 @echo " dist to create a \"dist\" directory with archived docs for download"
31 # Note: if you update versions here, do the same in make.bat and README.txt
32 checkout:
33 @if [ ! -d tools/sphinx ]; then \
34 echo "Checking out Sphinx..."; \
35 svn checkout $(SVNROOT)/external/Sphinx-0.6.2/sphinx tools/sphinx; \
37 @if [ ! -d tools/docutils ]; then \
38 echo "Checking out Docutils..."; \
39 svn checkout $(SVNROOT)/external/docutils-0.5/docutils tools/docutils; \
41 @if [ ! -d tools/jinja2 ]; then \
42 echo "Checking out Jinja..."; \
43 svn checkout $(SVNROOT)/external/Jinja-2.1.1/jinja2 tools/jinja2; \
45 @if [ ! -d tools/pygments ]; then \
46 echo "Checking out Pygments..."; \
47 svn checkout $(SVNROOT)/external/Pygments-0.11.1/pygments tools/pygments; \
50 update: checkout
51 svn update tools/sphinx
52 svn update tools/docutils
53 svn update tools/jinja2
54 svn update tools/pygments
56 build: checkout
57 mkdir -p build/$(BUILDER) build/doctrees
58 $(PYTHON) tools/sphinx-build.py $(ALLSPHINXOPTS)
59 @echo
61 html: BUILDER = html
62 html: build
63 @echo "Build finished. The HTML pages are in build/html."
65 htmlhelp: BUILDER = htmlhelp
66 htmlhelp: build
67 @echo "Build finished; now you can run HTML Help Workshop with the" \
68 "build/htmlhelp/pydoc.hhp project file."
70 latex: BUILDER = latex
71 latex: build
72 @echo "Build finished; the LaTeX files are in build/latex."
73 @echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
74 "run these through (pdf)latex."
76 text: BUILDER = text
77 text: build
78 @echo "Build finished; the text files are in build/text."
80 changes: BUILDER = changes
81 changes: build
82 @echo "The overview file is in build/changes."
84 linkcheck: BUILDER = linkcheck
85 linkcheck: build
86 @echo "Link check complete; look for any errors in the above output " \
87 "or in build/$(BUILDER)/output.txt"
89 suspicious: BUILDER = suspicious
90 suspicious: build
91 @echo "Suspicious check complete; look for any errors in the above output " \
92 "or in build/$(BUILDER)/suspicious.txt"
94 coverage: BUILDER = coverage
95 coverage: build
96 @echo "Coverage finished; see c.txt and python.txt in build/coverage"
98 doctest: BUILDER = doctest
99 doctest: build
100 @echo "Testing of doctests in the sources finished, look at the " \
101 "results in build/doctest/output.txt"
103 pydoc-topics: BUILDER = pydoc-topics
104 pydoc-topics: build
105 @echo "Building finished; now copy build/pydoc-topics/topics.py " \
106 "to Lib/pydoc_data/topics.py"
108 htmlview: html
109 $(PYTHON) -c "import webbrowser; webbrowser.open('build/html/index.html')"
111 clean:
112 -rm -rf build/*
113 -rm -rf tools/sphinx
115 dist:
116 -rm -rf dist
117 mkdir -p dist
119 # archive the HTML
120 make html
121 cp -pPR build/html dist/python-$(DISTVERSION)-docs-html
122 tar -C dist -cf dist/python-$(DISTVERSION)-docs-html.tar python-$(DISTVERSION)-docs-html
123 bzip2 -9 -k dist/python-$(DISTVERSION)-docs-html.tar
124 (cd dist; zip -q -r -9 python-$(DISTVERSION)-docs-html.zip python-$(DISTVERSION)-docs-html)
125 rm -r dist/python-$(DISTVERSION)-docs-html
126 rm dist/python-$(DISTVERSION)-docs-html.tar
128 # archive the text build
129 make text
130 cp -pPR build/text dist/python-$(DISTVERSION)-docs-text
131 tar -C dist -cf dist/python-$(DISTVERSION)-docs-text.tar python-$(DISTVERSION)-docs-text
132 bzip2 -9 -k dist/python-$(DISTVERSION)-docs-text.tar
133 (cd dist; zip -q -r -9 python-$(DISTVERSION)-docs-text.zip python-$(DISTVERSION)-docs-text)
134 rm -r dist/python-$(DISTVERSION)-docs-text
135 rm dist/python-$(DISTVERSION)-docs-text.tar
137 # archive the A4 latex
138 -rm -r build/latex
139 make latex PAPER=a4
140 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
141 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-a4.zip
142 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2
144 # archive the letter latex
145 rm -r build/latex
146 make latex PAPER=letter
147 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
148 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-letter.zip
149 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2
151 check:
152 $(PYTHON) tools/rstlint.py -i tools