[Python-checkins] cpython (3.3): Add a autobuild-quick target that only rebuilds HTML.

georg.brandl python-checkins at python.org
Sun Oct 28 08:08:12 CET 2012


http://hg.python.org/cpython/rev/51f292067714
changeset:   80000:51f292067714
branch:      3.3
parent:      79997:8bde13c5277e
user:        Georg Brandl <georg at python.org>
date:        Sun Oct 28 08:09:02 2012 +0100
summary:
  Add a autobuild-quick target that only rebuilds HTML.

files:
  Doc/Makefile |  5 +++++
  1 files changed, 5 insertions(+), 0 deletions(-)


diff --git a/Doc/Makefile b/Doc/Makefile
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -187,6 +187,10 @@
 	make update
 	make dist SPHINXOPTS='-A daily=1 -A versionswitcher=1'
 
+# for quick rebuilds (HTML only)
+autobuild-html:
+	make html SPHINXOPTS='-A daily=1 -A versionswitcher=1'
+
 # for stable releases: only build if not in pre-release stage (alpha, beta, rc)
 autobuild-stable:
 	@case $(DISTVERSION) in *[abc]*) \
@@ -194,3 +198,4 @@
 		exit 1;; \
 	esac
 	@make autobuild-dev
+

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list