summaryrefslogtreecommitdiffstats
path: root/Doc/Makefile
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2016-06-15 06:57:32 (GMT)
committerGeorg Brandl <georg@python.org>2016-06-15 06:57:32 (GMT)
commit4b9e75ba7f5d2f0baf0603eed9b4029af8e82ff3 (patch)
tree9bfbd310396e6f69e37b4acb0565d5f97912137a /Doc/Makefile
parent06d49bb89584921d17f3309530fc9544ef5b88c3 (diff)
downloadcpython-4b9e75ba7f5d2f0baf0603eed9b4029af8e82ff3.zip
cpython-4b9e75ba7f5d2f0baf0603eed9b4029af8e82ff3.tar.gz
cpython-4b9e75ba7f5d2f0baf0603eed9b4029af8e82ff3.tar.bz2
Docs: add html-stable autobuild variant
Diffstat (limited to 'Doc/Makefile')
-rw-r--r--Doc/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile
index ea30231..2220d92 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -161,7 +161,7 @@ autobuild-dev:
-make suspicious
# for quick rebuilds (HTML only)
-autobuild-html:
+autobuild-dev-html:
make html SPHINXOPTS='-A daily=1 -A versionswitcher=1'
# for stable releases: only build if not in pre-release stage (alpha, beta)
@@ -173,3 +173,9 @@ autobuild-stable:
esac
@make autobuild-dev
+autobuild-stable-html:
+ @case $(DISTVERSION) in *[ab]*) \
+ echo "Not building; $(DISTVERSION) is not a release version."; \
+ exit 1;; \
+ esac
+ @make autobuild-dev-html