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

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


http://hg.python.org/cpython/rev/7ddacd944cd6
changeset:   79999:7ddacd944cd6
branch:      2.7
parent:      79995:ee33671b2c6a
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
@@ -171,6 +171,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]*) \
@@ -178,3 +182,4 @@
 		exit 1;; \
 	esac
 	@make autobuild-dev
+

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


More information about the Python-checkins mailing list