Merge "Check for doc build dependency before building"

This commit is contained in:
Jenkins 2012-09-05 11:51:31 +00:00 committed by Gerrit Code Review
commit d21f082020

View File

@ -41,11 +41,15 @@ help:
clean:
-rm -rf $(BUILDDIR)/*
html:
html: check-dependencies
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
@echo
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
.PHONY: check-dependencies
check-dependencies:
@python -c 'import sphinxcontrib.autohttp.flask' >/dev/null 2>&1 || (echo "ERROR: Missing Sphinx dependencies. Run: pip install sphinxcontrib-httpdomain" && exit 1)
dirhtml:
$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
@echo