diff options
author | Georg Brandl <georg@python.org> | 2008-03-22 10:58:38 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-03-22 10:58:38 (GMT) |
commit | b98fe5a87fa0b58daf8614de24b9171c1dcb6076 (patch) | |
tree | 3db0f6f312930a23c5a358eaf95c5fb4296722f7 /Doc/Makefile | |
parent | 17baef0b7c7986619b7db46c70239f6b1a7d6a8f (diff) | |
download | cpython-b98fe5a87fa0b58daf8614de24b9171c1dcb6076.zip cpython-b98fe5a87fa0b58daf8614de24b9171c1dcb6076.tar.gz cpython-b98fe5a87fa0b58daf8614de24b9171c1dcb6076.tar.bz2 |
Allow giving source names on the cmdline.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 64a1b2f..5cfe635 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -8,9 +8,10 @@ PYTHON = python SVNROOT = http://svn.python.org/projects SPHINXOPTS = PAPER = +SOURCES = ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_paper_size=$(PAPER) \ - $(SPHINXOPTS) . build/$(BUILDER) + $(SPHINXOPTS) . build/$(BUILDER) $(SOURCES) .PHONY: help checkout update build html web htmlhelp clean coverage |