blob: 43dd80478a1e6b1fa0dfbd6c1e50baa7c40d3661 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001#
2# Makefile for Python documentation
3# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4#
5
6# You can set these variables from the command line.
Benjamin Peterson62f71b02009-03-03 22:55:55 +00007PYTHON = python
Georg Brandlf7b2f362014-02-16 09:46:36 +01008SPHINXBUILD = sphinx-build
Guido van Rossumda27fd22007-08-17 00:24:54 +00009SPHINXOPTS =
Christian Heimes2c181612007-12-17 20:04:13 +000010PAPER =
Christian Heimesfe337bf2008-03-23 21:54:12 +000011SOURCES =
Benjamin Peterson92035012008-12-27 16:00:54 +000012DISTVERSION = $(shell $(PYTHON) tools/sphinxext/patchlevel.py)
Georg Brandl116aa622007-08-15 14:28:22 +000013
Christian Heimes2c181612007-12-17 20:04:13 +000014ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_paper_size=$(PAPER) \
Christian Heimesfe337bf2008-03-23 21:54:12 +000015 $(SPHINXOPTS) . build/$(BUILDER) $(SOURCES)
Georg Brandl116aa622007-08-15 14:28:22 +000016
Éric Araujof446d7a2014-03-13 19:30:43 -040017.PHONY: help build html htmlhelp latex text changes linkcheck \
Georg Brandlfe427fe2010-03-13 11:02:07 +000018 suspicious coverage doctest pydoc-topics htmlview clean dist check serve \
19 autobuild-dev autobuild-stable
Georg Brandl116aa622007-08-15 14:28:22 +000020
21help:
22 @echo "Please use \`make <target>' where <target> is one of"
Georg Brandlfe427fe2010-03-13 11:02:07 +000023 @echo " clean to remove build files"
Georg Brandlfe427fe2010-03-13 11:02:07 +000024 @echo " html to make standalone HTML files"
Zachary Ware9393fff2014-04-29 09:24:40 -050025 @echo " htmlview to open the index page built by the html target in your browser"
Georg Brandlfe427fe2010-03-13 11:02:07 +000026 @echo " htmlhelp to make HTML files and a HTML help project"
27 @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
28 @echo " text to make plain text files"
Georg Brandl183fe812011-01-05 11:00:25 +000029 @echo " epub to make EPUB files"
Georg Brandlfe427fe2010-03-13 11:02:07 +000030 @echo " changes to make an overview over all changed/added/deprecated items"
31 @echo " linkcheck to check all external links for integrity"
32 @echo " coverage to check documentation coverage for library and C API"
33 @echo " doctest to run doctests in the documentation"
34 @echo " pydoc-topics to regenerate the pydoc topics file"
35 @echo " dist to create a \"dist\" directory with archived docs for download"
Benjamin Peterson28d88b42009-01-09 03:03:23 +000036 @echo " suspicious to check for suspicious markup in output text"
Georg Brandlfe427fe2010-03-13 11:02:07 +000037 @echo " check to run a check for frequent markup errors"
38 @echo " serve to serve the documentation on the localhost (8000)"
Georg Brandl116aa622007-08-15 14:28:22 +000039
Éric Araujof446d7a2014-03-13 19:30:43 -040040build:
Georg Brandlf7b2f362014-02-16 09:46:36 +010041 $(SPHINXBUILD) $(ALLSPHINXOPTS)
Georg Brandl116aa622007-08-15 14:28:22 +000042 @echo
43
44html: BUILDER = html
45html: build
46 @echo "Build finished. The HTML pages are in build/html."
47
Georg Brandl116aa622007-08-15 14:28:22 +000048htmlhelp: BUILDER = htmlhelp
49htmlhelp: build
50 @echo "Build finished; now you can run HTML Help Workshop with the" \
Guido van Rossumda27fd22007-08-17 00:24:54 +000051 "build/htmlhelp/pydoc.hhp project file."
Georg Brandl116aa622007-08-15 14:28:22 +000052
Christian Heimesd8654cf2007-12-02 15:22:16 +000053latex: BUILDER = latex
54latex: build
55 @echo "Build finished; the LaTeX files are in build/latex."
Christian Heimes2c181612007-12-17 20:04:13 +000056 @echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
57 "run these through (pdf)latex."
Christian Heimesd8654cf2007-12-02 15:22:16 +000058
Georg Brandl0c77a822008-06-10 16:37:50 +000059text: BUILDER = text
60text: build
61 @echo "Build finished; the text files are in build/text."
62
Georg Brandl183fe812011-01-05 11:00:25 +000063epub: BUILDER = epub
64epub: build
65 @echo "Build finished; the epub files are in build/epub."
66
Christian Heimes5b5e81c2007-12-31 16:14:33 +000067changes: BUILDER = changes
68changes: build
69 @echo "The overview file is in build/changes."
70
Christian Heimes292d3512008-02-03 16:51:08 +000071linkcheck: BUILDER = linkcheck
Serhiy Storchaka17f5f812014-07-22 10:24:25 +030072linkcheck:
73 @$(MAKE) build BUILDER=$(BUILDER) || { \
74 echo "Link check complete; look for any errors in the above output" \
75 "or in build/$(BUILDER)/output.txt"; \
76 false; }
Christian Heimes292d3512008-02-03 16:51:08 +000077
Benjamin Peterson28d88b42009-01-09 03:03:23 +000078suspicious: BUILDER = suspicious
Serhiy Storchaka17f5f812014-07-22 10:24:25 +030079suspicious:
80 @$(MAKE) build BUILDER=$(BUILDER) || { \
81 echo "Suspicious check complete; look for any errors in the above output" \
82 "or in build/$(BUILDER)/suspicious.csv. If all issues are false" \
83 "positives, append that file to tools/sphinxext/susp-ignored.csv."; \
84 false; }
Benjamin Peterson28d88b42009-01-09 03:03:23 +000085
Christian Heimesd3eb5a152008-02-24 00:38:49 +000086coverage: BUILDER = coverage
87coverage: build
88 @echo "Coverage finished; see c.txt and python.txt in build/coverage"
89
Christian Heimesfe337bf2008-03-23 21:54:12 +000090doctest: BUILDER = doctest
Serhiy Storchaka17f5f812014-07-22 10:24:25 +030091doctest:
92 @$(MAKE) build BUILDER=$(BUILDER) || { \
93 echo "Testing of doctests in the sources finished, look at the" \
94 "results in build/doctest/output.txt"; \
95 false; }
Christian Heimesfe337bf2008-03-23 21:54:12 +000096
Georg Brandl6b38daa2008-06-01 21:05:17 +000097pydoc-topics: BUILDER = pydoc-topics
98pydoc-topics: build
Georg Brandl19b3e002010-10-06 10:35:24 +000099 @echo "Building finished; now copy build/pydoc-topics/topics.py" \
Georg Brandl7f3cd982011-07-03 09:30:42 +0200100 "to ../Lib/pydoc_data/topics.py"
Georg Brandl6b38daa2008-06-01 21:05:17 +0000101
Benjamin Peterson41181742008-07-02 20:22:54 +0000102htmlview: html
103 $(PYTHON) -c "import webbrowser; webbrowser.open('build/html/index.html')"
Benjamin Peterson9bc93512008-09-22 22:10:59 +0000104
Georg Brandl116aa622007-08-15 14:28:22 +0000105clean:
106 -rm -rf build/*
Benjamin Peterson9bc93512008-09-22 22:10:59 +0000107
108dist:
Georg Brandl38557f22010-08-03 12:36:57 +0000109 rm -rf dist
Benjamin Peterson9bc93512008-09-22 22:10:59 +0000110 mkdir -p dist
111
112 # archive the HTML
113 make html
Benjamin Peterson92035012008-12-27 16:00:54 +0000114 cp -pPR build/html dist/python-$(DISTVERSION)-docs-html
115 tar -C dist -cf dist/python-$(DISTVERSION)-docs-html.tar python-$(DISTVERSION)-docs-html
116 bzip2 -9 -k dist/python-$(DISTVERSION)-docs-html.tar
117 (cd dist; zip -q -r -9 python-$(DISTVERSION)-docs-html.zip python-$(DISTVERSION)-docs-html)
118 rm -r dist/python-$(DISTVERSION)-docs-html
119 rm dist/python-$(DISTVERSION)-docs-html.tar
Benjamin Peterson9bc93512008-09-22 22:10:59 +0000120
121 # archive the text build
122 make text
Benjamin Peterson92035012008-12-27 16:00:54 +0000123 cp -pPR build/text dist/python-$(DISTVERSION)-docs-text
124 tar -C dist -cf dist/python-$(DISTVERSION)-docs-text.tar python-$(DISTVERSION)-docs-text
125 bzip2 -9 -k dist/python-$(DISTVERSION)-docs-text.tar
126 (cd dist; zip -q -r -9 python-$(DISTVERSION)-docs-text.zip python-$(DISTVERSION)-docs-text)
127 rm -r dist/python-$(DISTVERSION)-docs-text
128 rm dist/python-$(DISTVERSION)-docs-text.tar
Georg Brandl5617db82009-04-27 16:28:57 +0000129
Benjamin Peterson9bc93512008-09-22 22:10:59 +0000130 # archive the A4 latex
Georg Brandl38557f22010-08-03 12:36:57 +0000131 rm -rf build/latex
Benjamin Peterson9bc93512008-09-22 22:10:59 +0000132 make latex PAPER=a4
Georg Brandl692b3f82010-07-11 08:33:16 +0000133 -sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
Benjamin Peterson9bc93512008-09-22 22:10:59 +0000134 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
Benjamin Peterson92035012008-12-27 16:00:54 +0000135 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-a4.zip
136 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2
Benjamin Peterson9bc93512008-09-22 22:10:59 +0000137
138 # archive the letter latex
Georg Brandl38557f22010-08-03 12:36:57 +0000139 rm -rf build/latex
Benjamin Peterson9bc93512008-09-22 22:10:59 +0000140 make latex PAPER=letter
Georg Brandl692b3f82010-07-11 08:33:16 +0000141 -sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
Benjamin Peterson9bc93512008-09-22 22:10:59 +0000142 (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
Benjamin Peterson92035012008-12-27 16:00:54 +0000143 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-letter.zip
144 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2
Benjamin Peterson9bc93512008-09-22 22:10:59 +0000145
Georg Brandl865bdbf2014-03-28 19:48:55 +0100146 # copy the epub build
Georg Brandl183fe812011-01-05 11:00:25 +0000147 rm -rf build/epub
148 make epub
Georg Brandl865bdbf2014-03-28 19:48:55 +0100149 cp -pPR build/epub/Python.epub dist/python-$(DISTVERSION)-docs.epub
Georg Brandl183fe812011-01-05 11:00:25 +0000150
Georg Brandl45f53372009-01-03 21:15:20 +0000151check:
Georg Brandld5097882009-01-03 21:30:40 +0000152 $(PYTHON) tools/rstlint.py -i tools
R. David Murraye821cb62010-03-08 17:48:38 +0000153
154serve:
155 ../Tools/scripts/serve.py build/html
Georg Brandlfe427fe2010-03-13 11:02:07 +0000156
Georg Brandl49f47182010-03-13 13:42:16 +0000157# Targets for daily automated doc build
Georg Brandlfe427fe2010-03-13 11:02:07 +0000158
159# for development releases: always build
160autobuild-dev:
Ezio Melotti58864b32012-10-27 22:28:48 +0300161 make dist SPHINXOPTS='-A daily=1 -A versionswitcher=1'
Georg Brandl44d24292013-11-24 16:17:54 +0100162 -make suspicious
Georg Brandlfe427fe2010-03-13 11:02:07 +0000163
Georg Brandl01f47e82012-10-28 08:09:02 +0100164# for quick rebuilds (HTML only)
165autobuild-html:
166 make html SPHINXOPTS='-A daily=1 -A versionswitcher=1'
167
Georg Brandl49f47182010-03-13 13:42:16 +0000168# for stable releases: only build if not in pre-release stage (alpha, beta, rc)
Georg Brandlfe427fe2010-03-13 11:02:07 +0000169autobuild-stable:
170 @case $(DISTVERSION) in *[abc]*) \
Georg Brandl49f47182010-03-13 13:42:16 +0000171 echo "Not building; $(DISTVERSION) is not a release version."; \
172 exit 1;; \
Georg Brandlfe427fe2010-03-13 11:02:07 +0000173 esac
174 @make autobuild-dev
Georg Brandl01f47e82012-10-28 08:09:02 +0100175