blob: 729747333e9c7f6e69e07d0efad29015d7df8572 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
Description: Add the option to build Texinfo-format documentation.
Author: Benjamin Moody <benjamin@physionet.org>
Bug-Debian: https://bugs.debian.org/881959
Last-Update: 2017-11-27
--- python3.7-3.7.0~a2.orig/Doc/Makefile
+++ python3.7-3.7.0~a2/Doc/Makefile
@@ -27,6 +27,7 @@ help:
@echo " htmlview to open the index page built by the html target in your browser"
@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 " texinfo to make Texinfo files"
@echo " text to make plain text files"
@echo " epub to make EPUB files"
@echo " changes to make an overview over all changed/added/deprecated items"
@@ -72,6 +73,11 @@ latex: build
@echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
"run these through (pdf)latex."
+texinfo: BUILDER = texinfo
+texinfo: build
+ @echo "Build finished; the Texinfo files are in build/texinfo."
+ @echo "Run \`make\' in that directory to run these through makeinfo."
+
text: BUILDER = text
text: build
@echo "Build finished; the text files are in build/text."
|