diff options
author | Armin Ronacher <armin.ronacher@active-4.com> | 2008-06-27 08:45:19 +0200 |
---|---|---|
committer | Armin Ronacher <armin.ronacher@active-4.com> | 2008-06-27 08:45:19 +0200 |
commit | abd3657a64bb7f5c47572d621fea4f47f71b9bb6 (patch) | |
tree | 8c4ed313746787909029bb315e8d7081f55a5ffc /docs | |
parent | 53db78e3df0337a0f64cbed9babd32c5e387a8ce (diff) | |
download | jinja2-abd3657a64bb7f5c47572d621fea4f47f71b9bb6.tar.gz |
Added non-babel output mode to extract_from_ast, integreated jinja2 doctests directly into the py.test suite (ugh, that's an ugly hack)
--HG--
branch : trunk
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/docs/Makefile b/docs/Makefile index e9c11d0..5e24ec1 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -16,7 +16,8 @@ ALLSPHINXOPTS = -d _build/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . help: @echo "Please use \`make <target>' where <target> is one of" @echo " html to make standalone HTML files" - @echo " pickle to make pickle files (usable by e.g. sphinx-web)" + @echo " pickle to make pickle files" + @echo " json to make JSON files" @echo " htmlhelp to make HTML files and a HTML help project" @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" @echo " changes to make an overview over all changed/added/deprecated items" @@ -35,9 +36,13 @@ pickle: mkdir -p _build/pickle _build/doctrees $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) _build/pickle @echo - @echo "Build finished; now you can process the pickle files or run" - @echo " sphinx-web _build/pickle" - @echo "to start the sphinx-web server." + @echo "Build finished; now you can process the pickle files" + +json: + mkdir -p _build/json _build/doctrees + $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) _build/json + @echo + @echo "Build finished; now you can process the json files" web: pickle |