summaryrefslogtreecommitdiffstats
path: root/Doc/Makefile
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-10-28 07:09:02 (GMT)
committerGeorg Brandl <georg@python.org>2012-10-28 07:09:02 (GMT)
commit5fb657dfab401913c5172ccaa284116b093c4f44 (patch)
tree60797419cea5e51d13147883a39dbe5a087ec781 /Doc/Makefile
parent819574a226057d8de8ed4b8f92bdd0cf6defb458 (diff)
downloadcpython-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/Makefile5
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
+