Changeset 8506 for django/trunk/docs/Makefile
- Timestamp:
- 08/23/08 17:25:40 (3 months ago)
- Files:
-
- django/trunk/docs/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/Makefile
r7370 r8506 12 12 ALLSPHINXOPTS = -d _build/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . 13 13 14 .PHONY: help clean html web htmlhelp latex changes linkcheck14 .PHONY: help clean html web pickle htmlhelp latex changes linkcheck 15 15 16 16 help: 17 17 @echo "Please use \`make <target>' where <target> is one of" 18 18 @echo " html to make standalone HTML files" 19 @echo " web to make files usable by Sphinx.web"19 @echo " pickle to make pickle files (usable by e.g. sphinx-web)" 20 20 @echo " htmlhelp to make HTML files and a HTML help project" 21 21 @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" … … 32 32 @echo "Build finished. The HTML pages are in _build/html." 33 33 34 web:35 mkdir -p _build/ web_build/doctrees36 $(SPHINXBUILD) -b web $(ALLSPHINXOPTS) _build/web34 pickle: 35 mkdir -p _build/pickle _build/doctrees 36 $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) _build/pickle 37 37 @echo 38 @echo "Build finished; now you can run" 39 @echo " python -m sphinx.web _build/web" 40 @echo "to start the server." 38 @echo "Build finished; now you can process the pickle files or run" 39 @echo " sphinx-web _build/pickle" 40 @echo "to start the sphinx-web server." 41 42 web: pickle 41 43 42 44 htmlhelp:
