summaryrefslogtreecommitdiff
path: root/Doc/Makefile
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-10-28 08:09:02 +0100
committerGeorg Brandl <georg@python.org>2012-10-28 08:09:02 +0100
commit1d069fa726b5e4b1326498be184838cbca327b94 (patch)
treede32d1a59b21cdd8c10769c8b2760ad8b0257c91 /Doc/Makefile
parent527c36a3305a7822463ac0eb308502f2e5c5908e (diff)
downloadcpython-1d069fa726b5e4b1326498be184838cbca327b94.tar.gz
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 a6dc1e289f..a774aad0aa 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
+