summaryrefslogtreecommitdiff
path: root/docs/Makefile
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2012-04-07 22:35:57 +0000
committerClaude Paroz <claude@2xlibre.net>2012-04-07 22:35:57 +0000
commit393aeb79b818dd8fa921b051b1091525bbd52930 (patch)
treebb38a42ef7ff170cd83466d7194276ac0d378aac /docs/Makefile
parent8dd04fd84b4f69c4326e120c301d49a6c00e8e64 (diff)
Added gettext target to sphinx makefiles.
This have been copied from sphinx-quickstart result in latest sphinx versions. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17877 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/Makefile')
-rw-r--r--docs/Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/Makefile b/docs/Makefile
index 9301315040..bdf48549a3 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -11,8 +11,10 @@ BUILDDIR = _build
PAPEROPT_a4 = -D latex_paper_size=a4
PAPEROPT_letter = -D latex_paper_size=letter
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
+# the i18n builder cannot share the environment and doctrees with the others
+I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
-.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"
@@ -29,6 +31,7 @@ help:
@echo " latexpdf to make LaTeX files and run them through pdflatex"
@echo " text to make text files"
@echo " man to make manual pages"
+ @echo " gettext to make PO message catalogs"
@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)"
@@ -113,6 +116,11 @@ man:
@echo
@echo "Build finished. The manual pages are in $(BUILDDIR)/man."
+gettext:
+ $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
+ @echo
+ @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
+
changes:
$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
@echo