blob: b65478bd7b0c74b6dab7f2e0096c68ee7e1a269a [file] [log] [blame]
Guido van Rossume83e3801995-03-17 16:01:35 +00001# Makefile for Python documentation
2# ---------------------------------
3#
Guido van Rossum73827c61995-03-20 13:00:32 +00004# See also the README file.
5#
Guido van Rossume83e3801995-03-17 16:01:35 +00006# This is a bit of a mess. The main documents are:
7# tut -- Tutorial (file tut.tex)
8# lib -- Library Reference (file lib.tex, inputs lib*.tex)
9# ref -- Language Reference (file ref.tex, inputs ref*.tex)
10# ext -- Extending and Embedding (file ext.tex)
11#
12# The main target "make all" creates DVI and PostScript for these
13# four. You can also do "make lib" (etc.) to process individual
14# documents.
15#
16# There's also:
17# qua -- Paper published in the CWI Quarterly (file qua.tex)
18#
19# There's one local style file: myformat.sty. This defines a number
20# of macros that are similar in name and intent as macros in Texinfo
21# (e.g. \code{...} and \emph{...}), as well as a number of
22# environments for formatting function and data definitions, also in
23# the style of Texinfo.
24#
25# Everything is processed by LaTeX. The following tools are used:
26# latex
27# makeindex
28# dvips
29# bibtex (only for formatting qua.tex)
30#
31# There's a problem with generating the index which has been solved by
32# a sed command applied to the index file. The shell script fix_hack
33# does this (the Makefile takes care of calling it).
34#
35# To preview the dvi files produced by LaTeX it would be useful to
36# have xdvi as well.
37#
38# Additional targets attempt to convert selected LaTeX sources to
39# various other formats. These are generally site specific because
40# the tools used are all but universal. These targets are:
41# l2h -- convert tut, ref, ext (but not lib!) from LaTeX to HTML
42# lib.texi -- convert lib from LaTeX to Texinfo
43# lib.info -- convert lib from Texinfo to Emacs INFO
44# libwww -- convert lib from Texinfo to HTML
Guido van Rossum73827c61995-03-20 13:00:32 +000045# See the README file for more info on these targets.
Guido van Rossume83e3801995-03-17 16:01:35 +000046
Guido van Rossum73827c61995-03-20 13:00:32 +000047# Customizations -- you *may* have to edit these
Guido van Rossume83e3801995-03-17 16:01:35 +000048
Guido van Rossum73827c61995-03-20 13:00:32 +000049# Where are the various programs?
50LATEX= latex
51BIBTEX= bibtex
52EMACS= emacs
53DVIPS= dvips -f
54MAKEINDEX= makeindex
55PYTHON= python
56MAKEINFO= makeinfo
57L2H= /ufs/guido/l2h/latex2html
58L2HARGS= -address $$USER@`domainname` -dont_include myformat
59
60# Install destination -- not used now but might be useful some time...
61DESTDIR= /usr/local
62LIBDESTDIR= $DESTDIR/lib
63LIBDEST= $LIBDESTDIR/python
64DOCDESTDIR= $LIBDEST/doc
65
66# Ideally, you shouldn't need to edit beyond this point
Guido van Rossum5b343731992-07-07 09:06:34 +000067
Guido van Rossume83e3801995-03-17 16:01:35 +000068# Main target
Guido van Rossum16d6e711994-08-08 12:30:22 +000069all: tut.dvi lib.dvi ref.dvi ext.dvi
Guido van Rossum20aca5a1991-01-25 13:29:04 +000070
Guido van Rossume83e3801995-03-17 16:01:35 +000071# Individual document fake targets
Guido van Rossum16d6e711994-08-08 12:30:22 +000072tut: tut.dvi
Guido van Rossum16d6e711994-08-08 12:30:22 +000073lib: lib.dvi
Guido van Rossume83e3801995-03-17 16:01:35 +000074ref: ref.dvi
75ext: ext.dvi
Guido van Rossum16d6e711994-08-08 12:30:22 +000076
Guido van Rossume83e3801995-03-17 16:01:35 +000077# CWI Quarterly document fake target
78qua: qua.dvi
79
80# Dependencies
Guido van Rossum16d6e711994-08-08 12:30:22 +000081tut.dvi lib.dvi ref.dvi ext.dvi: myformat.sty fix_hack
82
Guido van Rossume83e3801995-03-17 16:01:35 +000083# Tutorial document
Guido van Rossum16d6e711994-08-08 12:30:22 +000084tut.dvi: tut.tex
Guido van Rossum73827c61995-03-20 13:00:32 +000085 $(LATEX) tut
86 $(LATEX) tut
Guido van Rossum6938f061994-08-01 12:22:53 +000087 $(DVIPS) tut >tut.ps
Guido van Rossumb3fa13c1991-01-22 11:47:14 +000088
Guido van Rossume83e3801995-03-17 16:01:35 +000089# Reference document
Guido van Rossum16d6e711994-08-08 12:30:22 +000090ref.dvi: ref.tex ref1.tex ref2.tex ref3.tex ref4.tex ref5.tex ref6.tex \
91 ref7.tex ref8.tex
Guido van Rossumb83241c1992-03-06 10:56:42 +000092 touch ref.ind
Guido van Rossum73827c61995-03-20 13:00:32 +000093 $(LATEX) ref
Guido van Rossum4ac605e1992-12-17 15:31:02 +000094 ./fix_hack ref.idx
Guido van Rossum73827c61995-03-20 13:00:32 +000095 $(MAKEINDEX) ref
96 $(LATEX) ref
Guido van Rossum6938f061994-08-01 12:22:53 +000097 $(DVIPS) ref >ref.ps
Guido van Rossumb3fa13c1991-01-22 11:47:14 +000098
Guido van Rossum16d6e711994-08-08 12:30:22 +000099# LaTeX source files for the Python Library Reference
100LIBFILES = lib.tex \
Guido van Rossumecde7811995-03-28 13:35:14 +0000101libal.tex libaifc.tex liballos.tex \
102 libamoeba.tex libarray.tex libaudio.tex libaudioop.tex \
Jack Jansen4549b131995-08-29 11:30:24 +0000103libbltin.tex libbinascii.tex \
Sjoerd Mullenderffd6de11995-03-28 11:56:52 +0000104libcd.tex \
Guido van Rossumdc46c7f1995-03-01 15:38:16 +0000105libcgi.tex libcopy.tex libctb.tex libcrypto.tex \
Guido van Rossum16d6e711994-08-08 12:30:22 +0000106libdbm.tex \
107libexcs.tex \
Guido van Rossuma12ef941995-02-27 17:53:25 +0000108libfcntl.tex libfl.tex libfm.tex libftplib.tex libfuncs.tex \
109libgdbm.tex libgetopt.tex libgl.tex libgopherlib.tex libgrp.tex \
110libhtmllib.tex libhttplib.tex \
Guido van Rossum16d6e711994-08-08 12:30:22 +0000111libimageop.tex libimgfile.tex libintro.tex \
112libjpeg.tex \
Guido van Rossum85c4ff21995-03-07 10:12:11 +0000113libmac.tex libmacconsole.tex libmacdnr.tex \
Jack Jansenda53c521995-10-10 14:43:20 +0000114 libmacfs.tex libmacos.tex libmacostools.tex libmactcp.tex \
115 libmacspeech.tex libmacui.tex \
Guido van Rossum85c4ff21995-03-07 10:12:11 +0000116 libmain.tex libmarshal.tex libmath.tex \
Guido van Rossumecde7811995-03-28 13:35:14 +0000117 libmd5.tex libmimetools.tex libmisc.tex \
Guido van Rossum5ae34bf1995-03-28 13:39:31 +0000118 libmm.tex libmpz.tex \
Guido van Rossuma12ef941995-02-27 17:53:25 +0000119libnntplib.tex \
Guido van Rossum16d6e711994-08-08 12:30:22 +0000120libobjs.tex libos.tex \
Guido van Rossumca814701995-10-11 17:32:29 +0000121libpanel.tex libparser.tex libpickle.tex libposix.tex libposixfile.tex \
Guido van Rossumecde7811995-03-28 13:35:14 +0000122 libppath.tex libprofile.tex libpwd.tex libpython.tex \
Guido van Rossuma12ef941995-02-27 17:53:25 +0000123librand.tex libregex.tex libregsub.tex \
124 librfc822.tex librgbimg.tex librotor.tex \
125libselect.tex libsgi.tex libsgmllib.tex \
Guido van Rossum5ae34bf1995-03-28 13:39:31 +0000126 libshelve.tex libsocket.tex libsomeos.tex libstdwin.tex \
Guido van Rossumecde7811995-03-28 13:35:14 +0000127 libstring.tex libstrings.tex libstruct.tex libsun.tex libsys.tex \
Guido van Rossumf9adf481995-03-31 12:26:24 +0000128libtempfile.tex libtermios.tex libthread.tex libtime.tex \
Guido van Rossumdc46c7f1995-03-01 15:38:16 +0000129 libtraceback.tex libtypes.tex libtypes2.tex \
Guido van Rossuma12ef941995-02-27 17:53:25 +0000130libunix.tex liburllib.tex liburlparse.tex \
Guido van Rossum817a8421995-02-16 16:28:22 +0000131libwhrandom.tex libwww.tex
Guido van Rossum16d6e711994-08-08 12:30:22 +0000132
Guido van Rossume83e3801995-03-17 16:01:35 +0000133# Library document
Guido van Rossum16d6e711994-08-08 12:30:22 +0000134lib.dvi: $(LIBFILES)
Guido van Rossumb83241c1992-03-06 10:56:42 +0000135 touch lib.ind
Guido van Rossum73827c61995-03-20 13:00:32 +0000136 $(LATEX) lib
Guido van Rossum95cd2ef1992-12-08 14:37:55 +0000137 ./fix_hack lib.idx
Guido van Rossum73827c61995-03-20 13:00:32 +0000138 $(MAKEINDEX) lib
139 $(LATEX) lib
Guido van Rossum6938f061994-08-01 12:22:53 +0000140 $(DVIPS) lib >lib.ps
Guido van Rossuma52117e1991-11-21 13:54:36 +0000141
Guido van Rossume83e3801995-03-17 16:01:35 +0000142# Extensions document
Guido van Rossum16d6e711994-08-08 12:30:22 +0000143ext.dvi: ext.tex
Guido van Rossum7a2dba21993-11-05 14:45:11 +0000144 touch ext.ind
Guido van Rossum73827c61995-03-20 13:00:32 +0000145 $(LATEX) ext
Guido van Rossum7a2dba21993-11-05 14:45:11 +0000146 ./fix_hack ext.idx
Guido van Rossum73827c61995-03-20 13:00:32 +0000147 $(MAKEINDEX) ext
148 $(LATEX) ext
Guido van Rossum6938f061994-08-01 12:22:53 +0000149 $(DVIPS) ext >ext.ps
Guido van Rossum7a2dba21993-11-05 14:45:11 +0000150
Guido van Rossume83e3801995-03-17 16:01:35 +0000151# Quarterly document
Guido van Rossum16d6e711994-08-08 12:30:22 +0000152qua.dvi: qua.tex quabib.bib
Guido van Rossum73827c61995-03-20 13:00:32 +0000153 $(LATEX) qua
154 $(BIBTEX) qua
155 $(LATEX) qua
156 $(BIBTEX) qua
Guido van Rossum6938f061994-08-01 12:22:53 +0000157 $(DVIPS) qua >qua.ps
Guido van Rossumb3fa13c1991-01-22 11:47:14 +0000158
Guido van Rossume83e3801995-03-17 16:01:35 +0000159
160# The remaining part of the Makefile is concerned with various
Guido van Rossum73827c61995-03-20 13:00:32 +0000161# conversions, as described above. See also the README file.
Guido van Rossume83e3801995-03-17 16:01:35 +0000162
Guido van Rossum6938f061994-08-01 12:22:53 +0000163lib.texi: lib*.tex texipre.dat texipost.dat partparse.py fix.el
Guido van Rossum73827c61995-03-20 13:00:32 +0000164 $(PYTHON) partparse.py -o @lib.texi `./whichlibs`
165 $(EMACS) -batch -l fix.el -f save-buffer -kill
Guido van Rossum7a2dba21993-11-05 14:45:11 +0000166 mv @lib.texi lib.texi
Guido van Rossum95cd2ef1992-12-08 14:37:55 +0000167
Guido van Rossum7a2dba21993-11-05 14:45:11 +0000168.PRECIOUS: lib.texi
169
Guido van Rossum6938f061994-08-01 12:22:53 +0000170python-lib.info: lib.texi
Guido van Rossum73827c61995-03-20 13:00:32 +0000171 -$(MAKEINFO) --footnote-style end --fill-column 72 \
172 --paragraph-indent 0 lib.texi
Guido van Rossum7a2dba21993-11-05 14:45:11 +0000173
174lib.info: python-lib.info
175
176# This target is very local to CWI...
177libwww: lib.texi
Guido van Rossum73827c61995-03-20 13:00:32 +0000178 $(PYTHON) texi2html.py -d lib.texi /ufs/guido/public_html/python-lib
Guido van Rossum6938f061994-08-01 12:22:53 +0000179
Guido van Rossum73827c61995-03-20 13:00:32 +0000180# Targets to convert the manuals to HTML using Nikos Drakos' LaTeX to
181# HTML converter. For more info on this program, see
Guido van Rossume83e3801995-03-17 16:01:35 +0000182# <URL:http://cbl.leeds.ac.uk/nikos/tex2html/doc/latex2html/latex2html.html>.
183# (I've had some trouble getting this to work with the netpbm version
184# of the pbmplus library; ppmtogif dumped core because giftopnm
185# outputs bitmap (pbm) files. I've fixed this by changing the source
186# of LaTeX2HTML to insert a call to pnmtoppm, which I wrote myself.
187# You can probably also use "pbmtopgm | pgmtoppm"...
188
189# In order to use these targets, you must edit the definition of L2H
Guido van Rossum73827c61995-03-20 13:00:32 +0000190# earlier in the Makefile to point to the latex2html program. Note
191# that LaTeX2HTML inserts references to an "icons" directory in each
192# page that it generates. You can customize where these icons are to
193# be found; I generally make it point to "../icons" and then create a
Guido van Rossume83e3801995-03-17 16:01:35 +0000194# symbolic link to the icons directory in the LaTeX2HTML source at the
195# appropriate place.
196
Guido van Rossum6938f061994-08-01 12:22:53 +0000197l2h: l2htut l2href l2hext
198
199l2htut: tut
200 $(L2H) $(L2HARGS) tut.tex
201 @rm -rf python-tut
202 mv tut python-tut
203
204l2href: ref
205 $(L2H) $(L2HARGS) ref.tex
206 @rm -rf python-ref
207 mv ref python-ref
208
209l2hext: ext
210 $(L2H) $(L2HARGS) ext.tex
211 @rm -rf python-ext
212 mv ext python-ext
Guido van Rossum970871f1993-02-21 20:10:26 +0000213
Guido van Rossume83e3801995-03-17 16:01:35 +0000214# This target doesn't quite work, since l2h doesn't understand the
215# funcdesc and similar environments, and turns them into GIF images.
216# Use the "libwww" target above instead.
217l2hlib: lib
218 $(L2H) $(L2HARGS) lib.tex
219 @rm -rf python-lib
220 mv lib python-lib
221
222
223# Housekeeping targets
224
225# Remove temporary files
Guido van Rossum7f777ed1990-08-09 14:25:15 +0000226clean:
Guido van Rossum4ac605e1992-12-17 15:31:02 +0000227 rm -f @* *~ *.aux *.idx *.ilg *.ind *.log *.toc *.blg *.bbl *.pyc
Guido van Rossume83e3801995-03-17 16:01:35 +0000228 rm -f *.bak *.orig
Guido van Rossum5b343731992-07-07 09:06:34 +0000229 # Sources: .tex, .bib, .sty
Guido van Rossum7a2dba21993-11-05 14:45:11 +0000230 # Useful results: .dvi, .ps, .texi, .info
Guido van Rossum5b343731992-07-07 09:06:34 +0000231
Guido van Rossume83e3801995-03-17 16:01:35 +0000232# Remove temporaries as well as final products
Guido van Rossum5b343731992-07-07 09:06:34 +0000233clobber: clean
Guido van Rossum7a2dba21993-11-05 14:45:11 +0000234 rm -f *.dvi *.ps *.texi *.info *.info-[0-9]*