summaryrefslogtreecommitdiffstats
path: root/Doc/Makefile
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2016-06-15 06:58:46 (GMT)
committerGeorg Brandl <georg@python.org>2016-06-15 06:58:46 (GMT)
commitd20cb0263a6b760abb10ef7e5546fa3f1ff81af7 (patch)
treefb6ac17bf973f3649605ca060fc0b6815418844d /Doc/Makefile
parent9a8b5ca2d703d22ad57b51eb417fca22725c1419 (diff)
parentb14f0c640967c289b08be86261ac6d886cbf751b (diff)
downloadcpython-d20cb0263a6b760abb10ef7e5546fa3f1ff81af7.zip
cpython-d20cb0263a6b760abb10ef7e5546fa3f1ff81af7.tar.gz
cpython-d20cb0263a6b760abb10ef7e5546fa3f1ff81af7.tar.bz2
merge with 3.5
Diffstat (limited to 'Doc/Makefile')
-rw-r--r--Doc/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile
index 03a37f1..202e8e1 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -166,7 +166,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)
@@ -177,3 +177,10 @@ autobuild-stable:
exit 1;; \
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