Makefile 6.77 KB
Newer Older
1 2 3 4 5 6
#
# Makefile for Python documentation
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#

# You can set these variables from the command line.
7
PYTHON       = python
8 9
SVNROOT      = http://svn.python.org/projects
SPHINXOPTS   =
10
PAPER        =
Christian Heimes's avatar
Christian Heimes committed
11
SOURCES      =
Benjamin Peterson's avatar
Benjamin Peterson committed
12
DISTVERSION  = $(shell $(PYTHON) tools/sphinxext/patchlevel.py)
13

14
ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_paper_size=$(PAPER) \
Christian Heimes's avatar
Christian Heimes committed
15
                $(SPHINXOPTS) . build/$(BUILDER) $(SOURCES)
16

17 18 19
.PHONY: help checkout update build html htmlhelp latex text changes linkcheck \
	suspicious coverage doctest pydoc-topics htmlview clean dist check serve \
	autobuild-dev autobuild-stable
20 21 22

help:
	@echo "Please use \`make <target>' where <target> is one of"
23 24 25 26 27 28
	@echo "  clean      to remove build files"
	@echo "  update     to update build tools"
	@echo "  html       to make standalone HTML files"
	@echo "  htmlhelp   to make HTML files and a HTML help project"
	@echo "  latex      to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
	@echo "  text       to make plain text files"
29
	@echo "  epub       to make EPUB files"
30 31 32 33 34 35
	@echo "  changes    to make an overview over all changed/added/deprecated items"
	@echo "  linkcheck  to check all external links for integrity"
	@echo "  coverage   to check documentation coverage for library and C API"
	@echo "  doctest    to run doctests in the documentation"
	@echo "  pydoc-topics  to regenerate the pydoc topics file"
	@echo "  dist       to create a \"dist\" directory with archived docs for download"
36
	@echo "  suspicious to check for suspicious markup in output text"
37 38
	@echo "  check      to run a check for frequent markup errors"
	@echo "  serve      to serve the documentation on the localhost (8000)"
39

40
# Note: if you update versions here, do the same in make.bat and README.txt
41 42 43
checkout:
	@if [ ! -d tools/sphinx ]; then \
	  echo "Checking out Sphinx..."; \
Georg Brandl's avatar
Georg Brandl committed
44
	  svn checkout $(SVNROOT)/external/Sphinx-1.0.7/sphinx tools/sphinx; \
45 46 47
	fi
	@if [ ! -d tools/docutils ]; then \
	  echo "Checking out Docutils..."; \
48
	  svn checkout $(SVNROOT)/external/docutils-0.6/docutils tools/docutils; \
49
	fi
50
	@if [ ! -d tools/jinja2 ]; then \
51
	  echo "Checking out Jinja..."; \
52
	  svn checkout $(SVNROOT)/external/Jinja-2.3.1/jinja2 tools/jinja2; \
53
	fi
54 55
	@if [ ! -d tools/pygments ]; then \
	  echo "Checking out Pygments..."; \
56
	  svn checkout $(SVNROOT)/external/Pygments-1.3.1/pygments tools/pygments; \
57 58
	fi

59
update: clean checkout
60

61
build: checkout
62 63 64 65 66 67 68 69 70 71 72
	mkdir -p build/$(BUILDER) build/doctrees
	$(PYTHON) tools/sphinx-build.py $(ALLSPHINXOPTS)
	@echo

html: BUILDER = html
html: build
	@echo "Build finished. The HTML pages are in build/html."

htmlhelp: BUILDER = htmlhelp
htmlhelp: build
	@echo "Build finished; now you can run HTML Help Workshop with the" \
73
	      "build/htmlhelp/pydoc.hhp project file."
74

75 76 77
latex: BUILDER = latex
latex: build
	@echo "Build finished; the LaTeX files are in build/latex."
78 79
	@echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
	      "run these through (pdf)latex."
80

Georg Brandl's avatar
Georg Brandl committed
81 82 83 84
text: BUILDER = text
text: build
	@echo "Build finished; the text files are in build/text."

85 86 87 88
epub: BUILDER = epub
epub: build
	@echo "Build finished; the epub files are in build/epub."

89 90 91 92
changes: BUILDER = changes
changes: build
	@echo "The overview file is in build/changes."

Christian Heimes's avatar
Christian Heimes committed
93 94
linkcheck: BUILDER = linkcheck
linkcheck: build
95
	@echo "Link check complete; look for any errors in the above output" \
Christian Heimes's avatar
Christian Heimes committed
96 97
	      "or in build/$(BUILDER)/output.txt"

98 99
suspicious: BUILDER = suspicious
suspicious: build
100 101 102
	@echo "Suspicious check complete; look for any errors in the above output" \
	      "or in build/$(BUILDER)/suspicious.csv.  If all issues are false" \
	      "positives, append that file to tools/sphinxext/susp-ignored.csv."
103

104 105 106 107
coverage: BUILDER = coverage
coverage: build
	@echo "Coverage finished; see c.txt and python.txt in build/coverage"

Christian Heimes's avatar
Christian Heimes committed
108 109
doctest: BUILDER = doctest
doctest: build
110
	@echo "Testing of doctests in the sources finished, look at the" \
Christian Heimes's avatar
Christian Heimes committed
111 112
	      "results in build/doctest/output.txt"

113 114
pydoc-topics: BUILDER = pydoc-topics
pydoc-topics: build
115
	@echo "Building finished; now copy build/pydoc-topics/topics.py" \
116
	      "to ../Lib/pydoc_data/topics.py"
117

Benjamin Peterson's avatar
Benjamin Peterson committed
118 119
htmlview: html
	 $(PYTHON) -c "import webbrowser; webbrowser.open('build/html/index.html')"
Benjamin Peterson's avatar
Benjamin Peterson committed
120

121 122 123
clean:
	-rm -rf build/*
	-rm -rf tools/sphinx
124 125 126
	-rm -rf tools/pygments
	-rm -rf tools/jinja2
	-rm -rf tools/docutils
Benjamin Peterson's avatar
Benjamin Peterson committed
127 128

dist:
129
	rm -rf dist
Benjamin Peterson's avatar
Benjamin Peterson committed
130 131 132 133
	mkdir -p dist

	# archive the HTML
	make html
Benjamin Peterson's avatar
Benjamin Peterson committed
134 135 136 137 138 139
	cp -pPR build/html dist/python-$(DISTVERSION)-docs-html
	tar -C dist -cf dist/python-$(DISTVERSION)-docs-html.tar python-$(DISTVERSION)-docs-html
	bzip2 -9 -k dist/python-$(DISTVERSION)-docs-html.tar
	(cd dist; zip -q -r -9 python-$(DISTVERSION)-docs-html.zip python-$(DISTVERSION)-docs-html)
	rm -r dist/python-$(DISTVERSION)-docs-html
	rm dist/python-$(DISTVERSION)-docs-html.tar
Benjamin Peterson's avatar
Benjamin Peterson committed
140 141 142

	# archive the text build
	make text
Benjamin Peterson's avatar
Benjamin Peterson committed
143 144 145 146 147 148
	cp -pPR build/text dist/python-$(DISTVERSION)-docs-text
	tar -C dist -cf dist/python-$(DISTVERSION)-docs-text.tar python-$(DISTVERSION)-docs-text
	bzip2 -9 -k dist/python-$(DISTVERSION)-docs-text.tar
	(cd dist; zip -q -r -9 python-$(DISTVERSION)-docs-text.zip python-$(DISTVERSION)-docs-text)
	rm -r dist/python-$(DISTVERSION)-docs-text
	rm dist/python-$(DISTVERSION)-docs-text.tar
149

Benjamin Peterson's avatar
Benjamin Peterson committed
150
	# archive the A4 latex
151
	rm -rf build/latex
Benjamin Peterson's avatar
Benjamin Peterson committed
152
	make latex PAPER=a4
Georg Brandl's avatar
Georg Brandl committed
153
	-sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
Benjamin Peterson's avatar
Benjamin Peterson committed
154
	(cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
Benjamin Peterson's avatar
Benjamin Peterson committed
155 156
	cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-a4.zip
	cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2
Benjamin Peterson's avatar
Benjamin Peterson committed
157 158

	# archive the letter latex
159
	rm -rf build/latex
Benjamin Peterson's avatar
Benjamin Peterson committed
160
	make latex PAPER=letter
Georg Brandl's avatar
Georg Brandl committed
161
	-sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
Benjamin Peterson's avatar
Benjamin Peterson committed
162
	(cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
Benjamin Peterson's avatar
Benjamin Peterson committed
163 164
	cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-letter.zip
	cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2
Benjamin Peterson's avatar
Benjamin Peterson committed
165

166 167 168 169 170 171 172 173 174 175 176
	# archive the epub build
	rm -rf build/epub
	make epub
	mkdir -p dist/python-$(DISTVERSION)-docs-epub
	cp -pPR build/epub/*.epub dist/python-$(DISTVERSION)-docs-epub/
	tar -C dist -cf dist/python-$(DISTVERSION)-docs-epub.tar python-$(DISTVERSION)-docs-epub
	bzip2 -9 -k dist/python-$(DISTVERSION)-docs-epub.tar
	(cd dist; zip -q -r -9 python-$(DISTVERSION)-docs-epub.zip python-$(DISTVERSION)-docs-epub)
	rm -r dist/python-$(DISTVERSION)-docs-epub
	rm dist/python-$(DISTVERSION)-docs-epub.tar

177
check:
178
	$(PYTHON) tools/rstlint.py -i tools
179 180 181

serve:
	../Tools/scripts/serve.py build/html
182

183
# Targets for daily automated doc build
184 185 186 187

# for development releases: always build
autobuild-dev:
	make update
188
	make dist SPHINXOPTS='-A daily=1'
189

190
# for stable releases: only build if not in pre-release stage (alpha, beta, rc)
191 192
autobuild-stable:
	@case $(DISTVERSION) in *[abc]*) \
193 194
		echo "Not building; $(DISTVERSION) is not a release version."; \
		exit 1;; \
195 196
	esac
	@make autobuild-dev