diff options
author | Georg Brandl <georg@python.org> | 2012-10-28 07:09:31 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-10-28 07:09:31 (GMT) |
commit | 534ca2b8eac7437a5566eaf76c19efd02756b1be (patch) | |
tree | d24f4b141a534c9147a978cb1b627177a2a5bf80 /Doc | |
parent | 9e80124ca296165d42981353aaeec15569cf4f7c (diff) | |
parent | 01f47e82a3e6bccce7dddea63fa64fec29748112 (diff) | |
download | cpython-534ca2b8eac7437a5566eaf76c19efd02756b1be.zip cpython-534ca2b8eac7437a5566eaf76c19efd02756b1be.tar.gz cpython-534ca2b8eac7437a5566eaf76c19efd02756b1be.tar.bz2 |
merge with 3.3
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index a6dc1e2..a774aad 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -187,6 +187,10 @@ autobuild-dev: 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 @@ autobuild-stable: exit 1;; \ esac @make autobuild-dev + |