Blame python-2.7-texinfomakefile.patch

507ee2c
diff --git a/Doc/Makefile b/Doc/Makefile
507ee2c
index ebabc02..8a396a2 100644
507ee2c
--- a/Doc/Makefile
507ee2c
+++ b/Doc/Makefile
507ee2c
@@ -13,7 +13,7 @@ DISTVERSION  = $(shell $(PYTHON) tools/extensions/patchlevel.py)
507ee2c
 ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_elements.papersize=$(PAPER) \
Suvayu Ali c6b12b2
                 $(SPHINXOPTS) . build/$(BUILDER) $(SOURCES)
Suvayu Ali c6b12b2
 
Matej Stuchlik 42a43a7
-.PHONY: help build html htmlhelp latex text changes linkcheck \
Matej Stuchlik 42a43a7
+.PHONY: help build html htmlhelp latex text texinfo changes linkcheck \
Suvayu Ali c6b12b2
 	suspicious coverage doctest pydoc-topics htmlview clean dist check serve \
Suvayu Ali c6b12b2
 	autobuild-dev autobuild-stable
Suvayu Ali c6b12b2
 
507ee2c
@@ -24,6 +24,7 @@ help:
Matej Stuchlik 42a43a7
 	@echo "  htmlview   to open the index page built by the html target in your browser"
Suvayu Ali c6b12b2
 	@echo "  htmlhelp   to make HTML files and a HTML help project"
Suvayu Ali c6b12b2
 	@echo "  latex      to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
Suvayu Ali c6b12b2
+	@echo "  texinfo    to make Texinfo (.texi) files"
Suvayu Ali c6b12b2
 	@echo "  text       to make plain text files"
Matej Stuchlik 42a43a7
 	@echo "  epub       to make EPUB files"
Suvayu Ali c6b12b2
 	@echo "  changes    to make an overview over all changed/added/deprecated items"
507ee2c
@@ -59,6 +60,11 @@ text: BUILDER = text
507ee2c
 text: build
507ee2c
 	@echo "Build finished; the text files are in build/text."
Suvayu Ali c6b12b2
 
Suvayu Ali c6b12b2
+texinfo: BUILDER = texinfo
Suvayu Ali c6b12b2
+texinfo: build
Suvayu Ali c6b12b2
+	@echo "Build finished; the TeXInfo files are in build/texinfo."
Suvayu Ali c6b12b2
+	@echo "Run \`make info' in that directory to generate the info files."
Suvayu Ali c6b12b2
+
507ee2c
 epub: BUILDER = epub
507ee2c
 epub: build
507ee2c
 	@echo "Build finished; the epub files are in build/epub."