Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | # |
| 2 | # Makefile for Python documentation |
| 3 | # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 4 | # |
| 5 | |
| 6 | # You can set these variables from the command line. |
Benjamin Peterson | 62f71b0 | 2009-03-03 22:55:55 +0000 | [diff] [blame] | 7 | PYTHON = python |
Georg Brandl | f7b2f36 | 2014-02-16 09:46:36 +0100 | [diff] [blame] | 8 | SPHINXBUILD = sphinx-build |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 9 | PAPER = |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 10 | SOURCES = |
Benjamin Peterson | 82c05a5 | 2014-12-10 11:04:17 -0500 | [diff] [blame] | 11 | DISTVERSION = $(shell $(PYTHON) tools/extensions/patchlevel.py) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 12 | |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 13 | ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_paper_size=$(PAPER) \ |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 14 | $(SPHINXOPTS) . build/$(BUILDER) $(SOURCES) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 15 | |
Éric Araujo | f446d7a | 2014-03-13 19:30:43 -0400 | [diff] [blame] | 16 | .PHONY: help build html htmlhelp latex text changes linkcheck \ |
Georg Brandl | fe427fe | 2010-03-13 11:02:07 +0000 | [diff] [blame] | 17 | suspicious coverage doctest pydoc-topics htmlview clean dist check serve \ |
Brett Cannon | d5ea39d | 2014-12-05 15:17:31 -0500 | [diff] [blame] | 18 | autobuild-dev autobuild-stable venv |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 19 | |
| 20 | help: |
| 21 | @echo "Please use \`make <target>' where <target> is one of" |
Georg Brandl | fe427fe | 2010-03-13 11:02:07 +0000 | [diff] [blame] | 22 | @echo " clean to remove build files" |
Brett Cannon | d5ea39d | 2014-12-05 15:17:31 -0500 | [diff] [blame] | 23 | @echo " venv to create a venv with necessary tools" |
Georg Brandl | fe427fe | 2010-03-13 11:02:07 +0000 | [diff] [blame] | 24 | @echo " html to make standalone HTML files" |
Zachary Ware | 9393fff | 2014-04-29 09:24:40 -0500 | [diff] [blame] | 25 | @echo " htmlview to open the index page built by the html target in your browser" |
Georg Brandl | fe427fe | 2010-03-13 11:02:07 +0000 | [diff] [blame] | 26 | @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 Brandl | 183fe81 | 2011-01-05 11:00:25 +0000 | [diff] [blame] | 29 | @echo " epub to make EPUB files" |
Georg Brandl | fe427fe | 2010-03-13 11:02:07 +0000 | [diff] [blame] | 30 | @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 Peterson | 28d88b4 | 2009-01-09 03:03:23 +0000 | [diff] [blame] | 36 | @echo " suspicious to check for suspicious markup in output text" |
Georg Brandl | fe427fe | 2010-03-13 11:02:07 +0000 | [diff] [blame] | 37 | @echo " check to run a check for frequent markup errors" |
| 38 | @echo " serve to serve the documentation on the localhost (8000)" |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 39 | |
Éric Araujo | f446d7a | 2014-03-13 19:30:43 -0400 | [diff] [blame] | 40 | build: |
Georg Brandl | f7b2f36 | 2014-02-16 09:46:36 +0100 | [diff] [blame] | 41 | $(SPHINXBUILD) $(ALLSPHINXOPTS) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 42 | @echo |
| 43 | |
| 44 | html: BUILDER = html |
| 45 | html: build |
| 46 | @echo "Build finished. The HTML pages are in build/html." |
| 47 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 48 | htmlhelp: BUILDER = htmlhelp |
| 49 | htmlhelp: build |
| 50 | @echo "Build finished; now you can run HTML Help Workshop with the" \ |
Guido van Rossum | da27fd2 | 2007-08-17 00:24:54 +0000 | [diff] [blame] | 51 | "build/htmlhelp/pydoc.hhp project file." |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 52 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 53 | latex: BUILDER = latex |
| 54 | latex: build |
| 55 | @echo "Build finished; the LaTeX files are in build/latex." |
Christian Heimes | 2c18161 | 2007-12-17 20:04:13 +0000 | [diff] [blame] | 56 | @echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \ |
| 57 | "run these through (pdf)latex." |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 58 | |
Georg Brandl | 0c77a82 | 2008-06-10 16:37:50 +0000 | [diff] [blame] | 59 | text: BUILDER = text |
| 60 | text: build |
| 61 | @echo "Build finished; the text files are in build/text." |
| 62 | |
Georg Brandl | 183fe81 | 2011-01-05 11:00:25 +0000 | [diff] [blame] | 63 | epub: BUILDER = epub |
| 64 | epub: build |
| 65 | @echo "Build finished; the epub files are in build/epub." |
| 66 | |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 67 | changes: BUILDER = changes |
| 68 | changes: build |
| 69 | @echo "The overview file is in build/changes." |
| 70 | |
Christian Heimes | 292d351 | 2008-02-03 16:51:08 +0000 | [diff] [blame] | 71 | linkcheck: BUILDER = linkcheck |
Serhiy Storchaka | 17f5f81 | 2014-07-22 10:24:25 +0300 | [diff] [blame] | 72 | linkcheck: |
| 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 Heimes | 292d351 | 2008-02-03 16:51:08 +0000 | [diff] [blame] | 77 | |
Benjamin Peterson | 28d88b4 | 2009-01-09 03:03:23 +0000 | [diff] [blame] | 78 | suspicious: BUILDER = suspicious |
Serhiy Storchaka | 17f5f81 | 2014-07-22 10:24:25 +0300 | [diff] [blame] | 79 | suspicious: |
| 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" \ |
Georg Brandl | 61bd1dc | 2014-09-30 22:56:38 +0200 | [diff] [blame] | 83 | "positives, append that file to tools/susp-ignored.csv."; \ |
Serhiy Storchaka | 17f5f81 | 2014-07-22 10:24:25 +0300 | [diff] [blame] | 84 | false; } |
Benjamin Peterson | 28d88b4 | 2009-01-09 03:03:23 +0000 | [diff] [blame] | 85 | |
Christian Heimes | d3eb5a15 | 2008-02-24 00:38:49 +0000 | [diff] [blame] | 86 | coverage: BUILDER = coverage |
| 87 | coverage: build |
| 88 | @echo "Coverage finished; see c.txt and python.txt in build/coverage" |
| 89 | |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 90 | doctest: BUILDER = doctest |
Serhiy Storchaka | 17f5f81 | 2014-07-22 10:24:25 +0300 | [diff] [blame] | 91 | doctest: |
| 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 Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 96 | |
Georg Brandl | 6b38daa | 2008-06-01 21:05:17 +0000 | [diff] [blame] | 97 | pydoc-topics: BUILDER = pydoc-topics |
| 98 | pydoc-topics: build |
Larry Hastings | e8ff0ca | 2015-05-30 16:58:27 -0700 | [diff] [blame] | 99 | @echo "Building finished; now run this:" \ |
| 100 | "cp build/pydoc-topics/topics.py ../Lib/pydoc_data/topics.py" |
Georg Brandl | 6b38daa | 2008-06-01 21:05:17 +0000 | [diff] [blame] | 101 | |
Benjamin Peterson | 4118174 | 2008-07-02 20:22:54 +0000 | [diff] [blame] | 102 | htmlview: html |
| 103 | $(PYTHON) -c "import webbrowser; webbrowser.open('build/html/index.html')" |
Benjamin Peterson | 9bc9351 | 2008-09-22 22:10:59 +0000 | [diff] [blame] | 104 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 105 | clean: |
Brett Cannon | d5ea39d | 2014-12-05 15:17:31 -0500 | [diff] [blame] | 106 | -rm -rf build/* venv/* |
| 107 | |
| 108 | venv: |
| 109 | $(PYTHON) -m venv venv |
| 110 | ./venv/bin/python3 -m pip install -U Sphinx |
Benjamin Peterson | 9bc9351 | 2008-09-22 22:10:59 +0000 | [diff] [blame] | 111 | |
| 112 | dist: |
Georg Brandl | 38557f2 | 2010-08-03 12:36:57 +0000 | [diff] [blame] | 113 | rm -rf dist |
Benjamin Peterson | 9bc9351 | 2008-09-22 22:10:59 +0000 | [diff] [blame] | 114 | mkdir -p dist |
| 115 | |
| 116 | # archive the HTML |
| 117 | make html |
Benjamin Peterson | 9203501 | 2008-12-27 16:00:54 +0000 | [diff] [blame] | 118 | cp -pPR build/html dist/python-$(DISTVERSION)-docs-html |
| 119 | tar -C dist -cf dist/python-$(DISTVERSION)-docs-html.tar python-$(DISTVERSION)-docs-html |
| 120 | bzip2 -9 -k dist/python-$(DISTVERSION)-docs-html.tar |
| 121 | (cd dist; zip -q -r -9 python-$(DISTVERSION)-docs-html.zip python-$(DISTVERSION)-docs-html) |
| 122 | rm -r dist/python-$(DISTVERSION)-docs-html |
| 123 | rm dist/python-$(DISTVERSION)-docs-html.tar |
Benjamin Peterson | 9bc9351 | 2008-09-22 22:10:59 +0000 | [diff] [blame] | 124 | |
| 125 | # archive the text build |
| 126 | make text |
Benjamin Peterson | 9203501 | 2008-12-27 16:00:54 +0000 | [diff] [blame] | 127 | cp -pPR build/text dist/python-$(DISTVERSION)-docs-text |
| 128 | tar -C dist -cf dist/python-$(DISTVERSION)-docs-text.tar python-$(DISTVERSION)-docs-text |
| 129 | bzip2 -9 -k dist/python-$(DISTVERSION)-docs-text.tar |
| 130 | (cd dist; zip -q -r -9 python-$(DISTVERSION)-docs-text.zip python-$(DISTVERSION)-docs-text) |
| 131 | rm -r dist/python-$(DISTVERSION)-docs-text |
| 132 | rm dist/python-$(DISTVERSION)-docs-text.tar |
Georg Brandl | 5617db8 | 2009-04-27 16:28:57 +0000 | [diff] [blame] | 133 | |
Benjamin Peterson | 9bc9351 | 2008-09-22 22:10:59 +0000 | [diff] [blame] | 134 | # archive the A4 latex |
Georg Brandl | 38557f2 | 2010-08-03 12:36:57 +0000 | [diff] [blame] | 135 | rm -rf build/latex |
Benjamin Peterson | 9bc9351 | 2008-09-22 22:10:59 +0000 | [diff] [blame] | 136 | make latex PAPER=a4 |
Georg Brandl | 692b3f8 | 2010-07-11 08:33:16 +0000 | [diff] [blame] | 137 | -sed -i 's/makeindex/makeindex -q/' build/latex/Makefile |
Benjamin Peterson | 9bc9351 | 2008-09-22 22:10:59 +0000 | [diff] [blame] | 138 | (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2) |
Benjamin Peterson | 9203501 | 2008-12-27 16:00:54 +0000 | [diff] [blame] | 139 | cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-a4.zip |
| 140 | cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2 |
Benjamin Peterson | 9bc9351 | 2008-09-22 22:10:59 +0000 | [diff] [blame] | 141 | |
| 142 | # archive the letter latex |
Georg Brandl | 38557f2 | 2010-08-03 12:36:57 +0000 | [diff] [blame] | 143 | rm -rf build/latex |
Benjamin Peterson | 9bc9351 | 2008-09-22 22:10:59 +0000 | [diff] [blame] | 144 | make latex PAPER=letter |
Georg Brandl | 692b3f8 | 2010-07-11 08:33:16 +0000 | [diff] [blame] | 145 | -sed -i 's/makeindex/makeindex -q/' build/latex/Makefile |
Benjamin Peterson | 9bc9351 | 2008-09-22 22:10:59 +0000 | [diff] [blame] | 146 | (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2) |
Benjamin Peterson | 9203501 | 2008-12-27 16:00:54 +0000 | [diff] [blame] | 147 | cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-letter.zip |
| 148 | cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2 |
Benjamin Peterson | 9bc9351 | 2008-09-22 22:10:59 +0000 | [diff] [blame] | 149 | |
Georg Brandl | 865bdbf | 2014-03-28 19:48:55 +0100 | [diff] [blame] | 150 | # copy the epub build |
Georg Brandl | 183fe81 | 2011-01-05 11:00:25 +0000 | [diff] [blame] | 151 | rm -rf build/epub |
| 152 | make epub |
Georg Brandl | 865bdbf | 2014-03-28 19:48:55 +0100 | [diff] [blame] | 153 | cp -pPR build/epub/Python.epub dist/python-$(DISTVERSION)-docs.epub |
Georg Brandl | 183fe81 | 2011-01-05 11:00:25 +0000 | [diff] [blame] | 154 | |
Georg Brandl | 45f5337 | 2009-01-03 21:15:20 +0000 | [diff] [blame] | 155 | check: |
Zachary Ware | bfba2cd | 2016-03-24 22:44:41 -0500 | [diff] [blame] | 156 | $(PYTHON) tools/rstlint.py -i tools -i venv |
R. David Murray | e821cb6 | 2010-03-08 17:48:38 +0000 | [diff] [blame] | 157 | |
| 158 | serve: |
| 159 | ../Tools/scripts/serve.py build/html |
Georg Brandl | fe427fe | 2010-03-13 11:02:07 +0000 | [diff] [blame] | 160 | |
Georg Brandl | 49f4718 | 2010-03-13 13:42:16 +0000 | [diff] [blame] | 161 | # Targets for daily automated doc build |
Georg Brandl | fe427fe | 2010-03-13 11:02:07 +0000 | [diff] [blame] | 162 | |
| 163 | # for development releases: always build |
| 164 | autobuild-dev: |
Ezio Melotti | 58864b3 | 2012-10-27 22:28:48 +0300 | [diff] [blame] | 165 | make dist SPHINXOPTS='-A daily=1 -A versionswitcher=1' |
Georg Brandl | 44d2429 | 2013-11-24 16:17:54 +0100 | [diff] [blame] | 166 | -make suspicious |
Georg Brandl | fe427fe | 2010-03-13 11:02:07 +0000 | [diff] [blame] | 167 | |
Georg Brandl | 01f47e8 | 2012-10-28 08:09:02 +0100 | [diff] [blame] | 168 | # for quick rebuilds (HTML only) |
Georg Brandl | 4b9e75b | 2016-06-15 08:57:32 +0200 | [diff] [blame] | 169 | autobuild-dev-html: |
Georg Brandl | 01f47e8 | 2012-10-28 08:09:02 +0100 | [diff] [blame] | 170 | make html SPHINXOPTS='-A daily=1 -A versionswitcher=1' |
| 171 | |
Benjamin Peterson | efd713b | 2014-09-24 20:22:24 -0400 | [diff] [blame] | 172 | # for stable releases: only build if not in pre-release stage (alpha, beta) |
| 173 | # release candidate downloads are okay, since the stable tree can be in that stage |
Georg Brandl | fe427fe | 2010-03-13 11:02:07 +0000 | [diff] [blame] | 174 | autobuild-stable: |
Benjamin Peterson | efd713b | 2014-09-24 20:22:24 -0400 | [diff] [blame] | 175 | @case $(DISTVERSION) in *[ab]*) \ |
Georg Brandl | 49f4718 | 2010-03-13 13:42:16 +0000 | [diff] [blame] | 176 | echo "Not building; $(DISTVERSION) is not a release version."; \ |
| 177 | exit 1;; \ |
Georg Brandl | fe427fe | 2010-03-13 11:02:07 +0000 | [diff] [blame] | 178 | esac |
| 179 | @make autobuild-dev |
Georg Brandl | 01f47e8 | 2012-10-28 08:09:02 +0100 | [diff] [blame] | 180 | |
Georg Brandl | 4b9e75b | 2016-06-15 08:57:32 +0200 | [diff] [blame] | 181 | autobuild-stable-html: |
| 182 | @case $(DISTVERSION) in *[ab]*) \ |
| 183 | echo "Not building; $(DISTVERSION) is not a release version."; \ |
| 184 | exit 1;; \ |
| 185 | esac |
| 186 | @make autobuild-dev-html |