Docs Makefile needs to ensure git submodules are initialized

This commit is contained in:
Matt Good
2013-02-21 13:43:27 -08:00
parent 79421df5cd
commit 05288daf17

View File

@@ -41,7 +41,7 @@ help:
clean:
-rm -rf $(BUILDDIR)/*
html:
html: _themes
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
@echo
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
@@ -151,3 +151,7 @@ doctest:
$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
@echo "Testing of doctests in the sources finished, look at the " \
"results in $(BUILDDIR)/doctest/output.txt."
_themes:
git clone git://github.com/Pylons/pylons_sphinx_theme.git _themes
cd ..; git submodule update --init; cd docs