blob: d26117be1b80dbe2306fd667ac2b8f36517faada [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; \
25fi
26@if [ ! -d tools/docutils ]; then \
27 echo "Checking out Docutils..."; \
28 svn checkout $(SVNROOT)/external/docutils-0.4/docutils tools/docutils; \
29fi
30@if [ ! -d tools/pygments ]; then \
31 echo "Checking out Pygments..."; \
32 svn checkout $(SVNROOT)/external/Pygments-0.8.1/pygments tools/pygments; \
33fi
34
35update:
36svn update tools/sphinx
37svn update tools/docutils
38svn update tools/pygments
39
40build: checkout
41mkdir -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