blob: aa88c8c6e963f7cd4bdcbc009e21409070b638e8 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001#
2# Makefile for Python documentation
3# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4#
5
6# You can set these variables from the command line.
Georg Brandl7094a0c2007-08-15 18:02:37 +00007PYTHON = python
8SVNROOT = http://svn.python.org/projects
9SPHINXOPTS =
Georg Brandl8ec7f652007-08-15 14:28:01 +000010
11ALLSPHINXOPTS = -b$(BUILDER) -dbuild/doctrees $(SPHINXOPTS) . build/$(BUILDER)
12
13.PHONY: help checkout update build html web htmlhelp clean
14
15help:
16 @echo "Please use \`make <target>' where <target> is one of"
17 @echo " html to make standalone HTML files"
18 @echo " web to make file usable by Sphinx.web"
19 @echo " htmlhelp to make HTML files and a HTML help project"
20
21checkout:
22 @if [ ! -d tools/sphinx ]; then \
23 echo "Checking out Sphinx..."; \
24 svn checkout $(SVNROOT)/doctools/trunk/sphinx tools/sphinx; \
25 fi
26 @if [ ! -d tools/docutils ]; then \
27 echo "Checking out Docutils..."; \
28 svn checkout $(SVNROOT)/external/docutils-0.4/docutils tools/docutils; \
29 fi
30 @if [ ! -d tools/pygments ]; then \
31 echo "Checking out Pygments..."; \
Georg Brandlfef8be62007-10-23 18:21:35 +000032 svn checkout $(SVNROOT)/external/Pygments-0.9/pygments tools/pygments; \
Georg Brandl8ec7f652007-08-15 14:28:01 +000033 fi
34
Martin v. Löwis39942402007-09-10 13:19:10 +000035update: checkout
Georg Brandl8ec7f652007-08-15 14:28:01 +000036 svn update tools/sphinx
37 svn update tools/docutils
38 svn update tools/pygments
39
40build: checkout
41 mkdir -p build/$(BUILDER) build/doctrees
42 $(PYTHON) tools/sphinx-build.py $(ALLSPHINXOPTS)
43 @echo
44
45html: BUILDER = html
46html: build
47 @echo "Build finished. The HTML pages are in build/html."
48
49web: BUILDER = web
50web: build
51 @echo "Build finished; now you can run"
52 @echo " PYTHONPATH=tools $(PYTHON) -m sphinx.web build/web"
53 @echo "to start the server."
54
55htmlhelp: BUILDER = htmlhelp
56htmlhelp: build
57 @echo "Build finished; now you can run HTML Help Workshop with the" \
Georg Brandl09a5c3e2007-08-15 18:30:42 +000058 "build/htmlhelp/pydoc.hhp project file."
Georg Brandl8ec7f652007-08-15 14:28:01 +000059
60clean:
61 -rm -rf build/*
62 -rm -rf tools/sphinx