diff options
author | Will Kahn-Greene <willg@bluesock.org> | 2011-07-31 17:54:54 -0400 |
---|---|---|
committer | Will Kahn-Greene <willg@bluesock.org> | 2011-07-31 17:54:54 -0400 |
commit | 25a7eb25bf8ba7ce977434fda0d18be441fe3d07 (patch) | |
tree | d46d62fc3ed1c0cd875692d06eb13c7bbe8f74b9 /docs/Makefile | |
parent | 82b15ad93f6d9dbfb0b00e1fb0a966506be792a0 (diff) | |
download | mediagoblin-25a7eb25bf8ba7ce977434fda0d18be441fe3d07.tar.lz mediagoblin-25a7eb25bf8ba7ce977434fda0d18be441fe3d07.tar.xz mediagoblin-25a7eb25bf8ba7ce977434fda0d18be441fe3d07.zip |
Moves docs files around so we build from source/ directory
Diffstat (limited to 'docs/Makefile')
-rw-r--r-- | docs/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/docs/Makefile b/docs/Makefile index 9a4608de..0b97bf7c 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -5,17 +5,16 @@ SPHINXOPTS = SPHINXBUILD = sphinx-build PAPER = -BUILDDIR = _build +BUILDDIR = build # Internal variables. PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_letter = -D latex_paper_size=letter -ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . - +ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source # the i18n builder cannot share the environment and doctrees with the others -I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . +I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source -.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest +.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext help: @echo "Please use \`make <target>' where <target> is one of" @@ -35,6 +34,9 @@ help: @echo " changes to make an overview of all changed/added/deprecated items" @echo " linkcheck to check all external links for integrity" @echo " doctest to run all doctests embedded in the documentation (if enabled)" + @echo " texinfo to make Texinfo files" + @echo " info to make Texinfo files and run them through makeinfo" + @echo " gettext to make PO message catalogs" clean: -rm -rf $(BUILDDIR)/* |