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: v2.7.4rc1~445 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5fb657dfab401913c5172ccaa284116b093c4f44;p=thirdparty%2FPython%2Fcpython.git Add a autobuild-quick target that only rebuilds HTML. --- diff --git a/Doc/Makefile b/Doc/Makefile index 38745db1b699..4052babcb6bf 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -171,6 +171,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]*) \ @@ -178,3 +182,4 @@ autobuild-stable: exit 1;; \ esac @make autobuild-dev +