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 | 5fb657dfab401913c5172ccaa284116b093c4f44 (patch) | |
tree | 60797419cea5e51d13147883a39dbe5a087ec781 /Doc/Makefile | |
parent | 819574a226057d8de8ed4b8f92bdd0cf6defb458 (diff) | |
download | cpython-5fb657dfab401913c5172ccaa284116b093c4f44.zip cpython-5fb657dfab401913c5172ccaa284116b093c4f44.tar.gz cpython-5fb657dfab401913c5172ccaa284116b093c4f44.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 38745db..4052bab 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -171,6 +171,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]*) \ @@ -178,3 +182,4 @@ autobuild-stable: exit 1;; \ esac @make autobuild-dev + |