2007-08-15 11:28:01 -03:00
|
|
|
#
|
|
|
|
# Makefile for Python documentation
|
|
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
#
|
|
|
|
|
|
|
|
# You can set these variables from the command line.
|
2007-08-15 15:02:37 -03:00
|
|
|
PYTHON = python
|
|
|
|
SVNROOT = http://svn.python.org/projects
|
|
|
|
SPHINXOPTS =
|
2007-12-16 15:36:51 -04:00
|
|
|
PAPER =
|
2007-08-15 11:28:01 -03:00
|
|
|
|
2007-12-16 15:36:51 -04:00
|
|
|
ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_paper_size=$(PAPER) \
|
|
|
|
$(SPHINXOPTS) . build/$(BUILDER)
|
2007-08-15 11:28:01 -03:00
|
|
|
|
|
|
|
.PHONY: help checkout update build html web htmlhelp clean
|
|
|
|
|
|
|
|
help:
|
|
|
|
@echo "Please use \`make <target>' where <target> is one of"
|
2008-02-01 11:50:15 -04:00
|
|
|
@echo " html to make standalone HTML files"
|
|
|
|
@echo " web to make file usable by Sphinx.web"
|
|
|
|
@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 " changes to make an overview over all changed/added/deprecated items"
|
|
|
|
@echo " linkcheck to check all external links for integrity"
|
2007-08-15 11:28:01 -03:00
|
|
|
|
|
|
|
checkout:
|
|
|
|
@if [ ! -d tools/sphinx ]; then \
|
|
|
|
echo "Checking out Sphinx..."; \
|
|
|
|
svn checkout $(SVNROOT)/doctools/trunk/sphinx tools/sphinx; \
|
|
|
|
fi
|
|
|
|
@if [ ! -d tools/docutils ]; then \
|
|
|
|
echo "Checking out Docutils..."; \
|
|
|
|
svn checkout $(SVNROOT)/external/docutils-0.4/docutils tools/docutils; \
|
|
|
|
fi
|
|
|
|
@if [ ! -d tools/pygments ]; then \
|
|
|
|
echo "Checking out Pygments..."; \
|
2007-10-23 15:21:35 -03:00
|
|
|
svn checkout $(SVNROOT)/external/Pygments-0.9/pygments tools/pygments; \
|
2007-08-15 11:28:01 -03:00
|
|
|
fi
|
|
|
|
|
2007-09-10 10:19:10 -03:00
|
|
|
update: checkout
|
2007-08-15 11:28:01 -03:00
|
|
|
svn update tools/sphinx
|
|
|
|
svn update tools/docutils
|
|
|
|
svn update tools/pygments
|
|
|
|
|
|
|
|
build: checkout
|
|
|
|
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."
|
|
|
|
|
|
|
|
web: BUILDER = web
|
|
|
|
web: build
|
|
|
|
@echo "Build finished; now you can run"
|
|
|
|
@echo " PYTHONPATH=tools $(PYTHON) -m sphinx.web build/web"
|
|
|
|
@echo "to start the server."
|
|
|
|
|
|
|
|
htmlhelp: BUILDER = htmlhelp
|
|
|
|
htmlhelp: build
|
|
|
|
@echo "Build finished; now you can run HTML Help Workshop with the" \
|
2007-08-15 15:30:42 -03:00
|
|
|
"build/htmlhelp/pydoc.hhp project file."
|
2007-08-15 11:28:01 -03:00
|
|
|
|
2007-12-02 10:58:50 -04:00
|
|
|
latex: BUILDER = latex
|
|
|
|
latex: build
|
|
|
|
@echo "Build finished; the LaTeX files are in build/latex."
|
2007-12-16 15:36:51 -04:00
|
|
|
@echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
|
|
|
|
"run these through (pdf)latex."
|
2007-12-02 10:58:50 -04:00
|
|
|
|
2007-12-29 06:57:00 -04:00
|
|
|
changes: BUILDER = changes
|
|
|
|
changes: build
|
|
|
|
@echo "The overview file is in build/changes."
|
|
|
|
|
2008-02-01 11:50:15 -04:00
|
|
|
linkcheck: BUILDER = linkcheck
|
|
|
|
linkcheck: build
|
2008-02-01 15:24:01 -04:00
|
|
|
@echo "Link check complete; look for any errors in the above output "\
|
|
|
|
"or in build/$(BUILDER)/output.txt"
|
2008-02-01 11:50:15 -04:00
|
|
|
|
2007-08-15 11:28:01 -03:00
|
|
|
clean:
|
|
|
|
-rm -rf build/*
|
|
|
|
-rm -rf tools/sphinx
|