Skip to content

Commit

Permalink
Docs: add html-stable autobuild variant
Browse files Browse the repository at this point in the history
  • Loading branch information
birkenfeld committed Jun 15, 2016
1 parent 06d49bb commit 4b9e75b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ autobuild-dev:
-make suspicious

# for quick rebuilds (HTML only)
autobuild-html:
autobuild-dev-html:
make html SPHINXOPTS='-A daily=1 -A versionswitcher=1'

# for stable releases: only build if not in pre-release stage (alpha, beta)
Expand All @@ -173,3 +173,9 @@ autobuild-stable:
esac
@make autobuild-dev

autobuild-stable-html:
@case $(DISTVERSION) in *[ab]*) \
echo "Not building; $(DISTVERSION) is not a release version."; \
exit 1;; \
esac
@make autobuild-dev-html

0 comments on commit 4b9e75b

Please sign in to comment.