]> 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 a6dc1e289f9772dca1dbf63829057a9edf8cb344..a774aad0aa328e69927433c3e15a997bc681fa7a 100644 (file)
@@ -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
+