]> granicus.if.org Git - python/commitdiff
Add a autobuild-quick target that only rebuilds HTML.
authorGeorg Brandl <georg@python.org>
Sun, 28 Oct 2012 07:09:02 +0000 (08:09 +0100)
committerGeorg Brandl <georg@python.org>
Sun, 28 Oct 2012 07:09:02 +0000 (08:09 +0100)
Doc/Makefile

index 38745db1b69940e55ded4325db3ecfc9b4715357..4052babcb6bf54c7c1f723fb39dfefce4b143bb7 100644 (file)
@@ -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
+