2009-01-03 00:43:04 +00:00
|
|
|
#
|
2009-01-03 01:25:03 +00:00
|
|
|
# Makefile for Scrapy documentation [based on Python documentation Makefile]
|
2009-01-03 00:43:04 +00:00
|
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
#
|
|
|
|
|
|
|
|
# You can set these variables from the command line.
|
|
|
|
PYTHON = python
|
|
|
|
SPHINXOPTS =
|
|
|
|
PAPER =
|
|
|
|
SOURCES =
|
2015-04-20 21:09:03 -03:00
|
|
|
SHELL = /bin/bash
|
2009-01-03 00:43:04 +00:00
|
|
|
|
2017-04-21 16:53:20 +02:00
|
|
|
ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees \
|
|
|
|
-D latex_elements.papersize=$(PAPER) \
|
2009-01-03 00:43:04 +00:00
|
|
|
$(SPHINXOPTS) . build/$(BUILDER) $(SOURCES)
|
|
|
|
|
2009-01-03 00:58:09 +00:00
|
|
|
.PHONY: help update build html htmlhelp clean
|
2009-01-03 00:43:04 +00:00
|
|
|
|
|
|
|
help:
|
|
|
|
@echo "Please use \`make <target>' where <target> is one of"
|
|
|
|
@echo " html to make standalone HTML 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 " text to make plain text files"
|
|
|
|
@echo " changes to make an overview over all changed/added/deprecated items"
|
|
|
|
@echo " linkcheck to check all external links for integrity"
|
2015-06-14 12:39:29 -03:00
|
|
|
@echo " watch build HTML docs, open in browser and watch for changes"
|
2009-01-03 00:43:04 +00:00
|
|
|
|
2015-06-25 21:30:35 -04:00
|
|
|
build-dirs:
|
2009-01-03 00:43:04 +00:00
|
|
|
mkdir -p build/$(BUILDER) build/doctrees
|
2015-06-25 21:30:35 -04:00
|
|
|
|
|
|
|
build: build-dirs
|
2015-06-25 10:12:56 -04:00
|
|
|
sphinx-build $(ALLSPHINXOPTS)
|
2009-01-03 00:43:04 +00:00
|
|
|
@echo
|
|
|
|
|
2015-06-25 21:30:35 -04:00
|
|
|
build-ignore-errors: build-dirs
|
|
|
|
-sphinx-build $(ALLSPHINXOPTS)
|
|
|
|
@echo
|
|
|
|
|
2009-01-03 00:58:09 +00:00
|
|
|
|
2009-01-03 00:43:04 +00:00
|
|
|
html: BUILDER = html
|
|
|
|
html: build
|
|
|
|
@echo "Build finished. The HTML pages are in build/html."
|
|
|
|
|
|
|
|
htmlhelp: BUILDER = htmlhelp
|
|
|
|
htmlhelp: build
|
|
|
|
@echo "Build finished; now you can run HTML Help Workshop with the" \
|
|
|
|
"build/htmlhelp/pydoc.hhp project file."
|
|
|
|
|
|
|
|
latex: BUILDER = latex
|
|
|
|
latex: build
|
|
|
|
@echo "Build finished; the LaTeX files are in build/latex."
|
|
|
|
@echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
|
|
|
|
"run these through (pdf)latex."
|
|
|
|
|
|
|
|
text: BUILDER = text
|
|
|
|
text: build
|
|
|
|
@echo "Build finished; the text files are in build/text."
|
|
|
|
|
|
|
|
changes: BUILDER = changes
|
|
|
|
changes: build
|
|
|
|
@echo "The overview file is in build/changes."
|
|
|
|
|
|
|
|
linkcheck: BUILDER = linkcheck
|
|
|
|
linkcheck: build
|
|
|
|
@echo "Link check complete; look for any errors in the above output " \
|
|
|
|
"or in build/$(BUILDER)/output.txt"
|
|
|
|
|
2015-06-25 21:30:35 -04:00
|
|
|
linkfix: BUILDER = linkcheck
|
|
|
|
linkfix: build-ignore-errors
|
2015-03-18 20:00:03 -03:00
|
|
|
$(PYTHON) utils/linkfix.py
|
|
|
|
@echo "Fixing redirecting links in docs has finished; check all " \
|
|
|
|
"replacements before committing them"
|
|
|
|
|
2009-01-03 00:43:04 +00:00
|
|
|
doctest: BUILDER = doctest
|
|
|
|
doctest: build
|
|
|
|
@echo "Testing of doctests in the sources finished, look at the " \
|
|
|
|
"results in build/doctest/output.txt"
|
|
|
|
|
|
|
|
pydoc-topics: BUILDER = pydoc-topics
|
|
|
|
pydoc-topics: build
|
|
|
|
@echo "Building finished; now copy build/pydoc-topics/pydoc_topics.py " \
|
|
|
|
"into the Lib/ directory"
|
|
|
|
|
|
|
|
htmlview: html
|
2017-03-24 18:13:08 +05:30
|
|
|
$(PYTHON) -c "import webbrowser, os; webbrowser.open('file://' + \
|
|
|
|
os.path.realpath('build/html/index.html'))"
|
2009-01-03 00:43:04 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
-rm -rf build/*
|
|
|
|
|
2015-04-20 21:09:03 -03:00
|
|
|
watch: htmlview
|
|
|
|
watchmedo shell-command -p '*.rst' -c 'make html' -R -D
|