diff options
author | Georg Brandl <georg@python.org> | 2012-10-28 07:09:02 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-10-28 07:09:02 (GMT) |
commit | 01f47e82a3e6bccce7dddea63fa64fec29748112 (patch) | |
tree | ab907bee36c20dbbe3b5b8c846e3fa28f18b7ed6 /Doc/Makefile | |
parent | ab5da6a80ed46cc63f8f239f613b2ce3d044c88f (diff) | |
download | cpython-01f47e82a3e6bccce7dddea63fa64fec29748112.zip cpython-01f47e82a3e6bccce7dddea63fa64fec29748112.tar.gz cpython-01f47e82a3e6bccce7dddea63fa64fec29748112.tar.bz2 |
Add a autobuild-quick target that only rebuilds HTML.
Diffstat (limited to 'Doc/Makefile')
-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 + |