From: Georg Brandl Date: Sun, 28 Oct 2012 07:09:02 +0000 (+0100) Subject: Add a autobuild-quick target that only rebuilds HTML. X-Git-Tag: v3.3.1rc1~729^2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=01f47e82a3e6bccce7dddea63fa64fec29748112;p=python Add a autobuild-quick target that only rebuilds HTML. --- 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 +