blob: 12851f077a0df2038ac4b9fbf7c94d771188577f [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)
Guido van Rossume83e3801995-03-17 16:01:35 +00009# ext -- Extending and Embedding (file ext.tex)
10#
Guido van Rossum1f175431996-10-22 20:00:02 +000011# The Reference Manual is now maintained as a FrameMaker document.
12# See the subdirectory ref; PostScript is included as ref/ref.ps.
13# (In the future, the Tutorial will also be converted to FrameMaker;
14# the other documents will be maintained in a text format such
15# as LaTeX or perhaps TIM.)
16#
Guido van Rossume83e3801995-03-17 16:01:35 +000017# The main target "make all" creates DVI and PostScript for these
18# four. You can also do "make lib" (etc.) to process individual
19# documents.
20#
21# There's also:
22# qua -- Paper published in the CWI Quarterly (file qua.tex)
23#
24# There's one local style file: myformat.sty. This defines a number
25# of macros that are similar in name and intent as macros in Texinfo
26# (e.g. \code{...} and \emph{...}), as well as a number of
27# environments for formatting function and data definitions, also in
28# the style of Texinfo.
29#
30# Everything is processed by LaTeX. The following tools are used:
31# latex
32# makeindex
33# dvips
34# bibtex (only for formatting qua.tex)
35#
36# There's a problem with generating the index which has been solved by
37# a sed command applied to the index file. The shell script fix_hack
38# does this (the Makefile takes care of calling it).
39#
40# To preview the dvi files produced by LaTeX it would be useful to
41# have xdvi as well.
42#
43# Additional targets attempt to convert selected LaTeX sources to
44# various other formats. These are generally site specific because
45# the tools used are all but universal. These targets are:
Fred Drakef1e67071996-12-06 15:11:34 +000046# l2h -- convert tut, lib, ext from LaTeX to HTML
Guido van Rossum73827c61995-03-20 13:00:32 +000047# See the README file for more info on these targets.
Guido van Rossume83e3801995-03-17 16:01:35 +000048
Guido van Rossum73827c61995-03-20 13:00:32 +000049# Customizations -- you *may* have to edit these
Guido van Rossume83e3801995-03-17 16:01:35 +000050
Guido van Rossum73827c61995-03-20 13:00:32 +000051# Where are the various programs?
52LATEX= latex
53BIBTEX= bibtex
Guido van Rossum73827c61995-03-20 13:00:32 +000054DVIPS= dvips -f
55MAKEINDEX= makeindex
Fred Drakef93f1011996-10-29 16:07:46 +000056L2H= latex2html
Fred Drakeb4d4e251996-11-11 21:03:01 +000057L2HARGS= -address $$USER@`domainname`
Guido van Rossum73827c61995-03-20 13:00:32 +000058
59# Install destination -- not used now but might be useful some time...
60DESTDIR= /usr/local
61LIBDESTDIR= $DESTDIR/lib
62LIBDEST= $LIBDESTDIR/python
63DOCDESTDIR= $LIBDEST/doc
64
65# Ideally, you shouldn't need to edit beyond this point
Guido van Rossum5b343731992-07-07 09:06:34 +000066
Guido van Rossume83e3801995-03-17 16:01:35 +000067# Main target
Guido van Rossumeb8d5031996-08-09 21:46:05 +000068all: all-ps
69
Guido van Rossum1f175431996-10-22 20:00:02 +000070all-dvi: tut.dvi lib.dvi ext.dvi
71all-ps: tut.ps lib.ps ext.ps
Guido van Rossum20aca5a1991-01-25 13:29:04 +000072
Guido van Rossume83e3801995-03-17 16:01:35 +000073# Individual document fake targets
Guido van Rossumeb8d5031996-08-09 21:46:05 +000074tut: tut.ps
75lib: lib.ps
Guido van Rossumeb8d5031996-08-09 21:46:05 +000076ext: ext.ps
Guido van Rossum16d6e711994-08-08 12:30:22 +000077
Guido van Rossume83e3801995-03-17 16:01:35 +000078# CWI Quarterly document fake target
Guido van Rossumeb8d5031996-08-09 21:46:05 +000079qua: qua.ps
Guido van Rossume83e3801995-03-17 16:01:35 +000080
81# Dependencies
Guido van Rossum1f175431996-10-22 20:00:02 +000082tut.dvi lib.dvi ext.dvi: myformat.sty fix_hack
Guido van Rossum16d6e711994-08-08 12:30:22 +000083
Guido van Rossume83e3801995-03-17 16:01:35 +000084# Tutorial document
Guido van Rossum16d6e711994-08-08 12:30:22 +000085tut.dvi: tut.tex
Guido van Rossum73827c61995-03-20 13:00:32 +000086 $(LATEX) tut
87 $(LATEX) tut
Guido van Rossumeb8d5031996-08-09 21:46:05 +000088
89tut.ps: tut.dvi
Guido van Rossum6938f061994-08-01 12:22:53 +000090 $(DVIPS) tut >tut.ps
Guido van Rossumb3fa13c1991-01-22 11:47:14 +000091
Guido van Rossum16d6e711994-08-08 12:30:22 +000092# LaTeX source files for the Python Library Reference
93LIBFILES = lib.tex \
Guido van Rossum40006cf1996-08-19 22:58:03 +000094 libintro.tex libobjs.tex libtypes.tex libexcs.tex libfuncs.tex \
95 libpython.tex libsys.tex libtypes2.tex libtraceback.tex libpickle.tex \
96 libshelve.tex libcopy.tex libmarshal.tex libimp.tex libparser.tex \
97 libbltin.tex libmain.tex libstrings.tex libstring.tex libregex.tex \
98 libregsub.tex libstruct.tex libmisc.tex libmath.tex librand.tex \
99 libwhrandom.tex libarray.tex liballos.tex libos.tex libtime.tex \
100 libgetopt.tex libtempfile.tex liberrno.tex libsomeos.tex libsignal.tex \
101 libsocket.tex libselect.tex libthread.tex libunix.tex libposix.tex \
102 libppath.tex libpwd.tex libgrp.tex libcrypt.tex libdbm.tex libgdbm.tex \
103 libtermios.tex libfcntl.tex libposixfile.tex libsyslog.tex libpdb.tex \
104 libprofile.tex libwww.tex libcgi.tex liburllib.tex libhttplib.tex \
105 libftplib.tex libgopherlib.tex libnntplib.tex liburlparse.tex \
106 libhtmllib.tex libsgmllib.tex librfc822.tex libmimetools.tex \
107 libbinascii.tex libmm.tex libaudioop.tex libimageop.tex libaifc.tex \
108 libjpeg.tex librgbimg.tex libcrypto.tex libmd5.tex libmpz.tex \
109 librotor.tex libmac.tex libctb.tex libmacconsole.tex libmacdnr.tex \
110 libmacfs.tex libmacos.tex libmacostools.tex libmactcp.tex \
111 libmacspeech.tex libmacui.tex libstdwin.tex libsgi.tex libal.tex \
112 libcd.tex libfl.tex libfm.tex libgl.tex libimgfile.tex libsun.tex \
Guido van Rossuma80c3981996-10-22 01:12:13 +0000113 libxdrlib.tex libimghdr.tex \
114 librestricted.tex librexec.tex libbastion.tex \
Guido van Rossum3486f271996-12-12 17:02:21 +0000115 libformatter.tex liboperator.tex libsoundex.tex
Guido van Rossum16d6e711994-08-08 12:30:22 +0000116
Guido van Rossume83e3801995-03-17 16:01:35 +0000117# Library document
Guido van Rossum16d6e711994-08-08 12:30:22 +0000118lib.dvi: $(LIBFILES)
Guido van Rossumb83241c1992-03-06 10:56:42 +0000119 touch lib.ind
Guido van Rossum73827c61995-03-20 13:00:32 +0000120 $(LATEX) lib
Guido van Rossum95cd2ef1992-12-08 14:37:55 +0000121 ./fix_hack lib.idx
Fred Drakeb4d4e251996-11-11 21:03:01 +0000122 $(MAKEINDEX) lib.idx
Guido van Rossum73827c61995-03-20 13:00:32 +0000123 $(LATEX) lib
Guido van Rossumeb8d5031996-08-09 21:46:05 +0000124
125lib.ps: lib.dvi
Guido van Rossum6938f061994-08-01 12:22:53 +0000126 $(DVIPS) lib >lib.ps
Guido van Rossuma52117e1991-11-21 13:54:36 +0000127
Guido van Rossume83e3801995-03-17 16:01:35 +0000128# Extensions document
Guido van Rossumf8daa4f1996-08-23 15:33:51 +0000129ext.dvi: ext.tex extref.tex
Guido van Rossum7a2dba21993-11-05 14:45:11 +0000130 touch ext.ind
Guido van Rossum73827c61995-03-20 13:00:32 +0000131 $(LATEX) ext
Guido van Rossum7a2dba21993-11-05 14:45:11 +0000132 ./fix_hack ext.idx
Fred Drakeb4d4e251996-11-11 21:03:01 +0000133 $(MAKEINDEX) ext.idx
Guido van Rossum73827c61995-03-20 13:00:32 +0000134 $(LATEX) ext
Guido van Rossumeb8d5031996-08-09 21:46:05 +0000135
136ext.ps: ext.dvi
Guido van Rossum6938f061994-08-01 12:22:53 +0000137 $(DVIPS) ext >ext.ps
Guido van Rossum7a2dba21993-11-05 14:45:11 +0000138
Guido van Rossume83e3801995-03-17 16:01:35 +0000139# Quarterly document
Guido van Rossum16d6e711994-08-08 12:30:22 +0000140qua.dvi: qua.tex quabib.bib
Guido van Rossum73827c61995-03-20 13:00:32 +0000141 $(LATEX) qua
142 $(BIBTEX) qua
143 $(LATEX) qua
144 $(BIBTEX) qua
Guido van Rossumeb8d5031996-08-09 21:46:05 +0000145
146qua.ps: qua.dvi
Guido van Rossum6938f061994-08-01 12:22:53 +0000147 $(DVIPS) qua >qua.ps
Guido van Rossumb3fa13c1991-01-22 11:47:14 +0000148
Guido van Rossume83e3801995-03-17 16:01:35 +0000149
150# The remaining part of the Makefile is concerned with various
Guido van Rossum73827c61995-03-20 13:00:32 +0000151# conversions, as described above. See also the README file.
Guido van Rossume83e3801995-03-17 16:01:35 +0000152
Guido van Rossum73827c61995-03-20 13:00:32 +0000153# Targets to convert the manuals to HTML using Nikos Drakos' LaTeX to
154# HTML converter. For more info on this program, see
Guido van Rossume83e3801995-03-17 16:01:35 +0000155# <URL:http://cbl.leeds.ac.uk/nikos/tex2html/doc/latex2html/latex2html.html>.
Guido van Rossume83e3801995-03-17 16:01:35 +0000156
Fred Drakeb4d4e251996-11-11 21:03:01 +0000157# Note that LaTeX2HTML inserts references to an "icons" directory in
158# each page that it generates. You can customize where these icons
159# are to be found; I generally make it point to "../icons" and then
160# create a symbolic link to the icons directory in the LaTeX2HTML
161# source at the appropriate place. Change the definition of
162# $ICONSERVER in .latex2html-init to point to a different location.
Guido van Rossume83e3801995-03-17 16:01:35 +0000163
Fred Drakefc8f6f31996-12-06 18:45:30 +0000164# The sed hack rips out a superfluous comma which I haven't found the source
165# of; the prominent location makes it worth the extra step. This affects the
166# title pages!
167
Fred Drakeb4d4e251996-11-11 21:03:01 +0000168l2h: l2htut l2hext l2hlib
Guido van Rossum6938f061994-08-01 12:22:53 +0000169
Fred Drakeb4d4e251996-11-11 21:03:01 +0000170l2htut: tut.dvi myformat.perl
Guido van Rossum6938f061994-08-01 12:22:53 +0000171 $(L2H) $(L2HARGS) tut.tex
172 @rm -rf python-tut
Fred Drakefc8f6f31996-12-06 18:45:30 +0000173 sed 's/^<P CLASS=ABSTRACT>,/<P CLASS=ABSTRACT>/' \
174 <tut/tut.html >tut/xxx
175 mv tut/xxx tut/tut.html
Fred Draked5606051996-12-06 20:06:37 +0000176 ln -s tut.html tut/index.html
Guido van Rossum6938f061994-08-01 12:22:53 +0000177 mv tut python-tut
178
Fred Drakeb4d4e251996-11-11 21:03:01 +0000179l2hext: ext.dvi myformat.perl
Guido van Rossum6938f061994-08-01 12:22:53 +0000180 $(L2H) $(L2HARGS) ext.tex
181 @rm -rf python-ext
Fred Drakefc8f6f31996-12-06 18:45:30 +0000182 sed 's/^<P CLASS=ABSTRACT>,/<P CLASS=ABSTRACT>/' \
183 <ext/ext.html >ext/xxx
Fred Draked5606051996-12-06 20:06:37 +0000184 ln -s ext.html ext/index.html
Fred Drakefc8f6f31996-12-06 18:45:30 +0000185 mv ext/xxx ext/ext.html
Guido van Rossum6938f061994-08-01 12:22:53 +0000186 mv ext python-ext
Guido van Rossum970871f1993-02-21 20:10:26 +0000187
Fred Drakeb4d4e251996-11-11 21:03:01 +0000188l2hlib: lib.dvi myformat.perl
189 ./fix_libaux.sed <lib.aux >@lib.aux
190 mv @lib.aux lib.aux
Guido van Rossume83e3801995-03-17 16:01:35 +0000191 $(L2H) $(L2HARGS) lib.tex
Fred Drakef1e67071996-12-06 15:11:34 +0000192 sed 's/^<P CLASS=ABSTRACT>,/<P CLASS=ABSTRACT>/' \
193 <lib/lib.html >lib/xxx
194 mv lib/xxx lib/lib.html
Fred Draked5606051996-12-06 20:06:37 +0000195 ln -s lib.html lib/index.html
Guido van Rossume83e3801995-03-17 16:01:35 +0000196 @rm -rf python-lib
197 mv lib python-lib
198
199
200# Housekeeping targets
201
202# Remove temporary files
Guido van Rossum7f777ed1990-08-09 14:25:15 +0000203clean:
Guido van Rossum4ac605e1992-12-17 15:31:02 +0000204 rm -f @* *~ *.aux *.idx *.ilg *.ind *.log *.toc *.blg *.bbl *.pyc
Guido van Rossume83e3801995-03-17 16:01:35 +0000205 rm -f *.bak *.orig
Guido van Rossum5b343731992-07-07 09:06:34 +0000206 # Sources: .tex, .bib, .sty
Guido van Rossum7a2dba21993-11-05 14:45:11 +0000207 # Useful results: .dvi, .ps, .texi, .info
Guido van Rossum5b343731992-07-07 09:06:34 +0000208
Guido van Rossume83e3801995-03-17 16:01:35 +0000209# Remove temporaries as well as final products
Guido van Rossum5b343731992-07-07 09:06:34 +0000210clobber: clean
Guido van Rossum7a2dba21993-11-05 14:45:11 +0000211 rm -f *.dvi *.ps *.texi *.info *.info-[0-9]*