From a24f0d5c65d7be51db237d8f555dcc1b5e47408f Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 19 Apr 2008 17:52:13 +0000 Subject: [PATCH] Use new name for web builder in the Makefile too. --- sphinx/quickstart.py | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index ec1402842..0bdf10eaf 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -188,12 +188,12 @@ PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_letter = -D latex_paper_size=letter ALLSPHINXOPTS = -d %(rbuilddir)s/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) %(rsrcdir)s -.PHONY: help clean html web htmlhelp latex changes linkcheck +.PHONY: help clean html web pickle htmlhelp latex changes linkcheck help: \t@echo "Please use \\`make ' where is one of" \t@echo " html to make standalone HTML files" -\t@echo " web to make files usable by Sphinx.web" +\t@echo " pickle to make pickle files (usable by e.g. sphinx-web)" \t@echo " htmlhelp to make HTML files and a HTML help project" \t@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" \t@echo " changes to make an overview over all changed/added/deprecated items" @@ -208,13 +208,15 @@ html: \t@echo \t@echo "Build finished. The HTML pages are in %(rbuilddir)s/html." -web: -\tmkdir -p %(rbuilddir)s/web %(rbuilddir)s/doctrees -\t$(SPHINXBUILD) -b web $(ALLSPHINXOPTS) %(rbuilddir)s/web +pickle: +\tmkdir -p %(rbuilddir)s/pickle %(rbuilddir)s/doctrees +\t$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) %(rbuilddir)s/pickle \t@echo -\t@echo "Build finished; now you can run" -\t@echo " python -m sphinx.web %(rbuilddir)s/web" -\t@echo "to start the server." +\t@echo "Build finished; now you can process the pickle files or run" +\t@echo " sphinx-web %(rbuilddir)s/pickle" +\t@echo "to start the sphinx-web server." + +web: pickle htmlhelp: \tmkdir -p %(rbuilddir)s/htmlhelp %(rbuilddir)s/doctrees