summaryrefslogtreecommitdiff
path: root/Doc/Makefile
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2016-06-15 08:58:00 +0200
committerGeorg Brandl <georg@python.org>2016-06-15 08:58:00 +0200
commitb14f0c640967c289b08be86261ac6d886cbf751b (patch)
tree5decae5dd65fd17563b449aa0bb18f082d611646 /Doc/Makefile
parent71e86367e090a0d0595a4221c8334d87979488e6 (diff)
parent4b9e75ba7f5d2f0baf0603eed9b4029af8e82ff3 (diff)
downloadcpython-git-b14f0c640967c289b08be86261ac6d886cbf751b.tar.gz
merge with 3.4
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 a42e98bd9c..878685dd7a 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