Commit 5fb657df authored by Georg Brandl's avatar Georg Brandl

Add a autobuild-quick target that only rebuilds HTML.

parent 819574a2
...@@ -171,6 +171,10 @@ autobuild-dev: ...@@ -171,6 +171,10 @@ autobuild-dev:
make update make update
make dist SPHINXOPTS='-A daily=1 -A versionswitcher=1' 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) # for stable releases: only build if not in pre-release stage (alpha, beta, rc)
autobuild-stable: autobuild-stable:
@case $(DISTVERSION) in *[abc]*) \ @case $(DISTVERSION) in *[abc]*) \
...@@ -178,3 +182,4 @@ autobuild-stable: ...@@ -178,3 +182,4 @@ autobuild-stable:
exit 1;; \ exit 1;; \
esac esac
@make autobuild-dev @make autobuild-dev
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment