summaryrefslogtreecommitdiffstats
path: root/Doc/info
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-05-08 15:36:36 (GMT)
committerFred Drake <fdrake@acm.org>1998-05-08 15:36:36 (GMT)
commit47fd8fed7c038f014d902a03f38a3c6240bbb37d (patch)
treed22a0dd0296c8bead6ebafd02b86a8bd5ab80905 /Doc/info
parent230b530a6ae7d16e7491c2e9d44d0bab52e282f7 (diff)
downloadcpython-47fd8fed7c038f014d902a03f38a3c6240bbb37d.zip
cpython-47fd8fed7c038f014d902a03f38a3c6240bbb37d.tar.gz
cpython-47fd8fed7c038f014d902a03f38a3c6240bbb37d.tar.bz2
Move the rules to build the info files here.
Diffstat (limited to 'Doc/info')
-rw-r--r--Doc/info/Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/Doc/info/Makefile b/Doc/info/Makefile
new file mode 100644
index 0000000..18da7d4
--- /dev/null
+++ b/Doc/info/Makefile
@@ -0,0 +1,32 @@
+# Generate the Python "info" documentation.
+
+# These is only used for .info generation:
+EMACS= emacs
+MAKEINFO= makeinfo
+PYTHON= python
+PARTPARSE= $(PYTHON) ../tools/partparse.py
+
+
+all: python-lib.info
+
+
+.PRECIOUS: python-lib.texi
+
+# The sed script in this target fixes a really nasty little condition in
+# libcgi.tex where \e has to be used in a group to get the right behavior,
+# and makeinfo can't handle a group without a leading @command. But at
+# least the info file gets generated.
+
+lib1.texi: $(LIBFILES) texipre.dat texipost.dat ../tools/partparse.py
+ $(PARTPARSE) -o $@ `../tools/whichlibs`
+ sed 's/"{\\}n{\\}n/"\\n\\n/' $@ >temp.texi
+ mv temp.texi $@
+
+python-lib.texi: lib1.texi ../tools/fix.el
+ cp lib1.texi temp.texi
+ $(EMACS) -batch -l ../tools/fix.el -f save-buffer -kill
+ mv temp.texi $@
+
+python-lib.info: python-lib.texi
+ $(MAKEINFO) --footnote-style end --fill-column 72 \
+ --paragraph-indent 0 $<