blob: 538fb741436901b14c2bd4b9538efa6743f76e3d [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)
Guido van Rossum9231c8f1997-05-15 21:43:21 +000010# api -- Python-C API Reference
Guido van Rossume83e3801995-03-17 16:01:35 +000011#
Guido van Rossum1f175431996-10-22 20:00:02 +000012# The Reference Manual is now maintained as a FrameMaker document.
13# See the subdirectory ref; PostScript is included as ref/ref.ps.
14# (In the future, the Tutorial will also be converted to FrameMaker;
15# the other documents will be maintained in a text format such
16# as LaTeX or perhaps TIM.)
17#
Guido van Rossume83e3801995-03-17 16:01:35 +000018# The main target "make all" creates DVI and PostScript for these
19# four. You can also do "make lib" (etc.) to process individual
20# documents.
21#
Fred Drake6659c301998-03-03 22:02:19 +000022# There's one local style file: python.sty. This defines a number
Guido van Rossume83e3801995-03-17 16:01:35 +000023# of macros that are similar in name and intent as macros in Texinfo
24# (e.g. \code{...} and \emph{...}), as well as a number of
25# environments for formatting function and data definitions, also in
26# the style of Texinfo.
27#
28# Everything is processed by LaTeX. The following tools are used:
29# latex
30# makeindex
31# dvips
Guido van Rossume83e3801995-03-17 16:01:35 +000032#
33# There's a problem with generating the index which has been solved by
34# a sed command applied to the index file. The shell script fix_hack
35# does this (the Makefile takes care of calling it).
36#
37# To preview the dvi files produced by LaTeX it would be useful to
38# have xdvi as well.
39#
40# Additional targets attempt to convert selected LaTeX sources to
41# various other formats. These are generally site specific because
42# the tools used are all but universal. These targets are:
Guido van Rossum9231c8f1997-05-15 21:43:21 +000043# l2h -- convert tut, lib, ext, api from LaTeX to HTML
Guido van Rossum73827c61995-03-20 13:00:32 +000044# See the README file for more info on these targets.
Guido van Rossume83e3801995-03-17 16:01:35 +000045
Guido van Rossum73827c61995-03-20 13:00:32 +000046# Customizations -- you *may* have to edit these
Guido van Rossume83e3801995-03-17 16:01:35 +000047
Guido van Rossum73827c61995-03-20 13:00:32 +000048# Where are the various programs?
Fred Drakee4837a11998-03-06 21:29:34 +000049LATEX= TEXINPUTS=$(TEXINPUTS) latex
50PDFLATEX= TEXINPUTS=$(TEXINPUTS) pdflatex
51TEXINPUTS= texinputs:
Guido van Rossum5344d4f1997-10-05 18:51:02 +000052DVIPS= dvips -f -N0
Fred Drake126d8401998-02-04 19:54:40 +000053DISTILL= distill
Fred Drakeea2f2b91998-04-04 04:21:45 +000054MAKEINDEX= makeindex -s texinputs/myindex.ist
Fred Drakee4837a11998-03-06 21:29:34 +000055L2H= TEXINPUTS=$(TEXINPUTS) latex2html -init_file perl/l2hinit.perl
Guido van Rossum0f280b61997-12-01 18:50:09 +000056L2HARGS= -address $$LOGNAME@`domainname`
Fred Drakee4837a11998-03-06 21:29:34 +000057WEBCHECKER= $(PYTHON) ../Tools/webchecker/webchecker.py
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
Fred Drakee4837a11998-03-06 21:29:34 +000062LIBDEST= $LIBDESTDIR/python$(VERSION)
Guido van Rossum73827c61995-03-20 13:00:32 +000063DOCDESTDIR= $LIBDEST/doc
64
Fred Drake05dd3c01997-12-29 17:17:54 +000065# This is only used for .info generation:
66EMACS= emacs
67PYTHON= python
68MAKEINFO= makeinfo
Fred Drakee4837a11998-03-06 21:29:34 +000069PARTPARSE= $(PYTHON) tools/partparse.py
Fred Drake05dd3c01997-12-29 17:17:54 +000070
Guido van Rossum73827c61995-03-20 13:00:32 +000071# Ideally, you shouldn't need to edit beyond this point
Guido van Rossum5b343731992-07-07 09:06:34 +000072
Fred Drakef5013f11998-04-13 21:02:49 +000073RELEASE=1.5.1
Fred Drake33d05b91998-01-13 16:33:09 +000074VERSION=1.5
75
Fred Drake04cf4dc1998-02-12 22:33:50 +000076DVIFILES= api.dvi ext.dvi lib.dvi tut.dvi
Fred Drakea7998351998-02-19 16:01:04 +000077INFOFILES= python-lib.info
Fred Drake04cf4dc1998-02-12 22:33:50 +000078PDFFILES= api.pdf ext.pdf lib.pdf tut.pdf
79PSFILES= api.ps ext.ps lib.ps tut.ps
80
Fred Drakeea2f2b91998-04-04 04:21:45 +000081MANSTYLES=texinputs/fncychap.sty texinputs/manual.cls texinputs/python.sty \
82 texinputs/myindex.ist
Fred Drakee4837a11998-03-06 21:29:34 +000083
Guido van Rossume83e3801995-03-17 16:01:35 +000084# Main target
Guido van Rossumeb8d5031996-08-09 21:46:05 +000085all: all-ps
86
Fred Drake2c954fa1998-03-07 19:59:45 +000087world: all-ps all-pdf l2h tarballs
Fred Drakee4837a11998-03-06 21:29:34 +000088
Fred Drake04cf4dc1998-02-12 22:33:50 +000089all-dvi: $(DVIFILES)
90all-pdf: $(PDFFILES)
91all-ps: $(PSFILES)
Guido van Rossum20aca5a1991-01-25 13:29:04 +000092
Fred Drake5fd242b1998-02-17 18:20:30 +000093# This target gets both the PDF and PS files updated; the all-pdf target
94# above doesn't ensure that both are done if the "alternate" rule (using
95# pdflatex) for PDF generation is used.
Fred Drakeddae4141998-02-17 15:45:25 +000096#
97all-formats: $(PSFILES) $(PDFFILES)
98
Guido van Rossume83e3801995-03-17 16:01:35 +000099# Individual document fake targets
Guido van Rossumeb8d5031996-08-09 21:46:05 +0000100tut: tut.ps
101lib: lib.ps
Guido van Rossumeb8d5031996-08-09 21:46:05 +0000102ext: ext.ps
Guido van Rossum9231c8f1997-05-15 21:43:21 +0000103api: api.ps
Guido van Rossume83e3801995-03-17 16:01:35 +0000104
Fred Drakedd946761998-02-18 16:02:14 +0000105# All formats for a single document
106api-all: api.dvi api.pdf api.ps l2hapi
107ext-all: ext.dvi ext.pdf ext.ps l2hext
108lib-all: lib.dvi lib.pdf lib.ps l2hlib
109tut-all: tut.dvi tut.pdf tut.ps l2htut
110
111
Fred Drake126d8401998-02-04 19:54:40 +0000112# Rules to build PostScript and PDF formats
Fred Drake5ad78f31998-02-22 19:47:13 +0000113.SUFFIXES: .dvi .ps .pdf .tex
Fred Drake126d8401998-02-04 19:54:40 +0000114
115.dvi.ps:
116 $(DVIPS) $< >$@
117
Fred Drakeddae4141998-02-17 15:45:25 +0000118#.ps.pdf:
119# $(DISTILL) $<
Fred Drake126d8401998-02-04 19:54:40 +0000120
Fred Drake3b26eed1998-02-16 17:06:10 +0000121# An alternate formulation of PDF creation; requires latex format with
122# pdftex. To use this instead of the Acrobat distiller solution, comment
123# out the above .ps.pdf rule and uncomment this rule. This was tested
124# using a pre-release of the teTeX distribution. See
125# http://www.tug.org/tetex/ for more information on getting & using teTeX.
126# This rule avoids creation of the intermediate PostScript files and uses
127# only free software.
128#
Fred Draked671e8f1998-04-15 14:50:56 +0000129$(PDFFILES): tools/toc2bkm.py
Fred Drakee4837a11998-03-06 21:29:34 +0000130.dvi.pdf: $*.bkm
Fred Drake396a7cf1998-03-17 06:22:12 +0000131 $(PDFLATEX) $*
Fred Drakee4837a11998-03-06 21:29:34 +0000132 $(PYTHON) tools/toc2bkm.py $*
Fred Drakeddae4141998-02-17 15:45:25 +0000133 $(PDFLATEX) $*
Fred Drake3b26eed1998-02-16 17:06:10 +0000134
Guido van Rossume83e3801995-03-17 16:01:35 +0000135# Dependencies
Fred Drakee4837a11998-03-06 21:29:34 +0000136COMMONTEX=$(MANSTYLES) copyright.tex boilerplate.tex
137COMMONPERL=perl/manual.perl perl/python.perl
Fred Drake5d8f0ed1998-02-11 14:43:38 +0000138
Fred Drakee4837a11998-03-06 21:29:34 +0000139$(DVIFILES): tools/fix_hack $(COMMONTEX)
Guido van Rossumeb8d5031996-08-09 21:46:05 +0000140
Guido van Rossum16d6e711994-08-08 12:30:22 +0000141# LaTeX source files for the Python Library Reference
142LIBFILES = lib.tex \
Guido van Rossum40006cf1996-08-19 22:58:03 +0000143 libintro.tex libobjs.tex libtypes.tex libexcs.tex libfuncs.tex \
144 libpython.tex libsys.tex libtypes2.tex libtraceback.tex libpickle.tex \
145 libshelve.tex libcopy.tex libmarshal.tex libimp.tex libparser.tex \
146 libbltin.tex libmain.tex libstrings.tex libstring.tex libregex.tex \
147 libregsub.tex libstruct.tex libmisc.tex libmath.tex librand.tex \
148 libwhrandom.tex libarray.tex liballos.tex libos.tex libtime.tex \
149 libgetopt.tex libtempfile.tex liberrno.tex libsomeos.tex libsignal.tex \
150 libsocket.tex libselect.tex libthread.tex libunix.tex libposix.tex \
151 libppath.tex libpwd.tex libgrp.tex libcrypt.tex libdbm.tex libgdbm.tex \
152 libtermios.tex libfcntl.tex libposixfile.tex libsyslog.tex libpdb.tex \
153 libprofile.tex libwww.tex libcgi.tex liburllib.tex libhttplib.tex \
154 libftplib.tex libgopherlib.tex libnntplib.tex liburlparse.tex \
155 libhtmllib.tex libsgmllib.tex librfc822.tex libmimetools.tex \
156 libbinascii.tex libmm.tex libaudioop.tex libimageop.tex libaifc.tex \
157 libjpeg.tex librgbimg.tex libcrypto.tex libmd5.tex libmpz.tex \
158 librotor.tex libmac.tex libctb.tex libmacconsole.tex libmacdnr.tex \
159 libmacfs.tex libmacos.tex libmacostools.tex libmactcp.tex \
160 libmacspeech.tex libmacui.tex libstdwin.tex libsgi.tex libal.tex \
161 libcd.tex libfl.tex libfm.tex libgl.tex libimgfile.tex libsun.tex \
Guido van Rossuma80c3981996-10-22 01:12:13 +0000162 libxdrlib.tex libimghdr.tex \
163 librestricted.tex librexec.tex libbastion.tex \
Guido van Rossum3dd68d31996-12-31 02:24:54 +0000164 libformatter.tex liboperator.tex libsoundex.tex libresource.tex \
Guido van Rossum7f3b0421997-03-27 14:56:18 +0000165 libstat.tex libstrio.tex libundoc.tex libmailcap.tex libglob.tex \
Guido van Rossume76b7a81997-04-27 21:25:52 +0000166 libuser.tex libanydbm.tex librandom.tex libsite.tex libwhichdb.tex \
Guido van Rossum41c302f1997-06-02 17:36:12 +0000167 libbase64.tex libfnmatch.tex libquopri.tex libzlib.tex libsocksvr.tex \
Fred Drake18600a41997-07-18 20:43:27 +0000168 libmailbox.tex libcommands.tex libcmath.tex libni.tex libgzip.tex \
Guido van Rossum36764b81997-08-30 20:02:25 +0000169 libpprint.tex libcode.tex libmimify.tex libre.tex libmacic.tex \
Guido van Rossum9cb64801997-12-29 20:01:55 +0000170 libuserdict.tex libdis.tex libxmllib.tex libqueue.tex \
Fred Drake8ff4b8b1998-02-18 17:19:53 +0000171 liblocale.tex libbasehttp.tex libcopyreg.tex libsymbol.tex libtoken.tex \
Fred Drakeea2f2b91998-04-04 04:21:45 +0000172 libframework.tex libminiae.tex libbinhex.tex libuu.tex libsunaudio.tex \
Fred Drake1e0f8bf1998-04-11 04:27:07 +0000173 libfileinput.tex libimaplib.tex
Guido van Rossum16d6e711994-08-08 12:30:22 +0000174
Guido van Rossume83e3801995-03-17 16:01:35 +0000175# Library document
Fred Drake520f8bd1998-03-09 16:43:54 +0000176lib.dvi: tools/indfix.py $(LIBFILES)
Fred Drake396a7cf1998-03-17 06:22:12 +0000177 tools/newind.py >$*.ind
178 tools/newind.py modindex >mod$*.ind
Fred Drake5ad78f31998-02-22 19:47:13 +0000179 $(LATEX) $*
Fred Drake8bc96571998-03-09 16:37:52 +0000180 $(MAKEINDEX) mod$*.idx
Fred Drakee4837a11998-03-06 21:29:34 +0000181 tools/fix_hack $*.idx
Fred Drake5ad78f31998-02-22 19:47:13 +0000182 $(MAKEINDEX) $*.idx
Fred Drakee4837a11998-03-06 21:29:34 +0000183 tools/indfix.py $*.ind
Fred Drake5ad78f31998-02-22 19:47:13 +0000184 $(LATEX) $*
Guido van Rossumeb8d5031996-08-09 21:46:05 +0000185
Fred Drake5ad78f31998-02-22 19:47:13 +0000186# Tutorial document
187tut.dvi: tut.tex
188 $(LATEX) $*
189 $(LATEX) $*
Guido van Rossumeb8d5031996-08-09 21:46:05 +0000190
Fred Drake5ad78f31998-02-22 19:47:13 +0000191# Extending & Embedding, Python/C API documents.
192# Done this way to avoid repeated command sets.
193.tex.dvi:
Fred Drake396a7cf1998-03-17 06:22:12 +0000194 tools/newind.py >$*.ind
Fred Drake5ad78f31998-02-22 19:47:13 +0000195 $(LATEX) $*
Fred Drakee4837a11998-03-06 21:29:34 +0000196 tools/fix_hack $*.idx
Fred Drake5ad78f31998-02-22 19:47:13 +0000197 $(MAKEINDEX) $*.idx
198 $(LATEX) $*
Guido van Rossumeb8d5031996-08-09 21:46:05 +0000199
Guido van Rossume83e3801995-03-17 16:01:35 +0000200
201# The remaining part of the Makefile is concerned with various
Guido van Rossum73827c61995-03-20 13:00:32 +0000202# conversions, as described above. See also the README file.
Guido van Rossume83e3801995-03-17 16:01:35 +0000203
Fred Drake5ad78f31998-02-22 19:47:13 +0000204.PRECIOUS: python-lib.texi
Fred Drake05dd3c01997-12-29 17:17:54 +0000205
Fred Drake3d913ad1997-12-29 21:31:23 +0000206# The sed script in this target fixes a really nasty little condition in
207# libcgi.tex where \e has to be used in a group to get the right behavior,
Fred Drake5ad78f31998-02-22 19:47:13 +0000208# and makeinfo can't handle a group without a leading @command. But at
209# least the info file gets generated.
Fred Drake3d913ad1997-12-29 21:31:23 +0000210
Fred Drake5ad78f31998-02-22 19:47:13 +0000211lib1.texi: $(LIBFILES) texipre.dat texipost.dat $(PARTPARSEOBJ)
Fred Drakee4837a11998-03-06 21:29:34 +0000212 $(PARTPARSE) -o $@ `tools/whichlibs`
Fred Drakea7998351998-02-19 16:01:04 +0000213 sed 's/"{\\}n{\\}n/"\\n\\n/' $@ >temp.texi
214 mv temp.texi $@
Fred Drake05dd3c01997-12-29 17:17:54 +0000215
Fred Drakee4837a11998-03-06 21:29:34 +0000216python-lib.texi: lib1.texi tools/fix.el
Fred Drakea7998351998-02-19 16:01:04 +0000217 cp lib1.texi temp.texi
Fred Drakee4837a11998-03-06 21:29:34 +0000218 $(EMACS) -batch -l tools/fix.el -f save-buffer -kill
Fred Drakea7998351998-02-19 16:01:04 +0000219 mv temp.texi $@
Fred Drake05dd3c01997-12-29 17:17:54 +0000220
Fred Drake5ad78f31998-02-22 19:47:13 +0000221python-lib.info: python-lib.texi
Fred Drakef7f2e701998-02-19 21:40:51 +0000222 $(MAKEINFO) --footnote-style end --fill-column 72 \
Fred Drakea7998351998-02-19 16:01:04 +0000223 --paragraph-indent 0 $<
Fred Drake05dd3c01997-12-29 17:17:54 +0000224
Fred Drake13704a81997-12-29 22:04:44 +0000225# this is needed to prevent a second set of info files from being generated,
226# at least when using GNU make
Fred Drake5ad78f31998-02-22 19:47:13 +0000227.PHONY: lib.info lib.texi
Fred Drake13704a81997-12-29 22:04:44 +0000228
Fred Drake05dd3c01997-12-29 17:17:54 +0000229lib.info: python-lib.info
230
Fred Drake5ad78f31998-02-22 19:47:13 +0000231lib.texi: python-lib.texi
232
Guido van Rossum73827c61995-03-20 13:00:32 +0000233# Targets to convert the manuals to HTML using Nikos Drakos' LaTeX to
234# HTML converter. For more info on this program, see
Guido van Rossume83e3801995-03-17 16:01:35 +0000235# <URL:http://cbl.leeds.ac.uk/nikos/tex2html/doc/latex2html/latex2html.html>.
Guido van Rossume83e3801995-03-17 16:01:35 +0000236
Guido van Rossum9cb64801997-12-29 20:01:55 +0000237# Note that LaTeX2HTML inserts references to an icons directory in
238# each page that it generates. I have placed a copy of this directory
239# in the distribution to simplify the process of creating a
240# self-contained HTML distribution; for this purpose I have also added
241# a (trivial) index.html. Change the definition of $ICONSERVER in
242# .latex2html-init to use a different location for the icons directory.
Guido van Rossume83e3801995-03-17 16:01:35 +0000243
Fred Drakeddae4141998-02-17 15:45:25 +0000244l2h: l2hapi l2hext l2hlib l2htut
Guido van Rossum6938f061994-08-01 12:22:53 +0000245
Fred Drakee4837a11998-03-06 21:29:34 +0000246l2htut: tut.dvi $(COMMONPERL)
Guido van Rossum6938f061994-08-01 12:22:53 +0000247 $(L2H) $(L2HARGS) tut.tex
Fred Drakee4837a11998-03-06 21:29:34 +0000248 (cd tut; ../tools/node2label.pl *.html)
Guido van Rossum6938f061994-08-01 12:22:53 +0000249
Fred Drakee4837a11998-03-06 21:29:34 +0000250l2hext: ext.dvi $(COMMONPERL)
Guido van Rossum6938f061994-08-01 12:22:53 +0000251 $(L2H) $(L2HARGS) ext.tex
Fred Drakee4837a11998-03-06 21:29:34 +0000252 (cd ext; ../tools/node2label.pl *.html)
Guido van Rossum970871f1993-02-21 20:10:26 +0000253
Fred Drakee4837a11998-03-06 21:29:34 +0000254l2hlib: lib.dvi $(COMMONPERL)
255 tools/fix_libaux.sed <lib.aux >lib1.aux
Fred Drake03ff6f71997-08-22 18:18:54 +0000256 mv lib1.aux lib.aux
Fred Drakee4837a11998-03-06 21:29:34 +0000257 if test -d lib ; then rm -f lib/*.html ; fi
Guido van Rossume83e3801995-03-17 16:01:35 +0000258 $(L2H) $(L2HARGS) lib.tex
Fred Drakee4837a11998-03-06 21:29:34 +0000259 (cd lib; ../tools/node2label.pl *.html)
Guido van Rossume83e3801995-03-17 16:01:35 +0000260
Fred Drakee4837a11998-03-06 21:29:34 +0000261l2hapi: api.dvi $(COMMONPERL)
Guido van Rossum9231c8f1997-05-15 21:43:21 +0000262 $(L2H) $(L2HARGS) api.tex
Fred Drakee4837a11998-03-06 21:29:34 +0000263 (cd api; ../tools/node2label.pl *.html)
Guido van Rossum9231c8f1997-05-15 21:43:21 +0000264
Fred Drakee4837a11998-03-06 21:29:34 +0000265# webchecker needs an extra flag to process the huge index from the libref
266webcheck:
267 $(WEBCHECKER) file:`pwd`/api/
268 $(WEBCHECKER) file:`pwd`/ext/
269 $(WEBCHECKER) -m290000 file:`pwd`/lib/
270 $(WEBCHECKER) file:`pwd`/tut/
271
Fred Drakef5013f11998-04-13 21:02:49 +0000272lib-info-$(RELEASE).tar.gz: $(INFOFILES)
Fred Drakea7998351998-02-19 16:01:04 +0000273 tar cf - python-???.info* | gzip -9 >$@
274
Fred Drakef5013f11998-04-13 21:02:49 +0000275latex-$(RELEASE).tar.gz:
Fred Drakee4837a11998-03-06 21:29:34 +0000276 tools/mktarball.sh
Fred Drakee61d7af1998-03-05 16:37:34 +0000277
Fred Drakeb1cd7711998-03-04 16:49:36 +0000278# This snags a PDF version if available, but doesn't fail if not.
Fred Drakef5013f11998-04-13 21:02:49 +0000279pdf-$(RELEASE).tar.gz: $(PDFFILES)
Fred Drakee4837a11998-03-06 21:29:34 +0000280 if test -f ref/ref.pdf ; then cp ref/ref.pdf . ; else true ; fi
Fred Drakea7998351998-02-19 16:01:04 +0000281 tar cf - ???.pdf | gzip -9 >$@
Fred Drakee4837a11998-03-06 21:29:34 +0000282 if test -f ref.pdf ; then rm ref.pdf ; else true ; fi
Fred Drake04cf4dc1998-02-12 22:33:50 +0000283
Fred Drakef5013f11998-04-13 21:02:49 +0000284postscript-$(RELEASE).tar.gz: $(PSFILES) ref/ref.ps
Fred Drake04cf4dc1998-02-12 22:33:50 +0000285 cp ref/ref.ps .
Fred Drakea7998351998-02-19 16:01:04 +0000286 tar cf - ???.ps | gzip -9 >$@
Fred Drake04cf4dc1998-02-12 22:33:50 +0000287 rm ref.ps
288
Guido van Rossum330c6601997-11-26 15:31:32 +0000289tarhtml:
Guido van Rossum84cca441997-11-25 20:49:09 +0000290 @echo "Did you remember to run makeMIFs.py in the ref subdirectory...?"
Fred Drakeb1cd7711998-03-04 16:49:36 +0000291 tar cf - index.html ???/???.css ???/*.html */*.gif \
Fred Drakef5013f11998-04-13 21:02:49 +0000292 | gzip -9 >html-$(RELEASE).tar.gz
Fred Drake33d05b91998-01-13 16:33:09 +0000293
Fred Drakea7998351998-02-19 16:01:04 +0000294# convenience targets:
295
Fred Drakef5013f11998-04-13 21:02:49 +0000296tarinfo: lib-info-$(RELEASE).tar.gz
Fred Drakea7998351998-02-19 16:01:04 +0000297
Fred Drakef5013f11998-04-13 21:02:49 +0000298tarps: postscript-$(RELEASE).tar.gz
Fred Drake33d05b91998-01-13 16:33:09 +0000299
Fred Drakef5013f11998-04-13 21:02:49 +0000300tarpdf: pdf-$(RELEASE).tar.gz
Fred Drake04cf4dc1998-02-12 22:33:50 +0000301
Fred Drakef5013f11998-04-13 21:02:49 +0000302tarlatex: latex-$(RELEASE).tar.gz
Fred Drakee61d7af1998-03-05 16:37:34 +0000303
Fred Drake2c954fa1998-03-07 19:59:45 +0000304tarballs: tarpdf tarps tarhtml tarlatex
Guido van Rossum84cca441997-11-25 20:49:09 +0000305
Guido van Rossume83e3801995-03-17 16:01:35 +0000306
307# Housekeeping targets
308
Guido van Rossum9231c8f1997-05-15 21:43:21 +0000309# Remove temporary files; all except the following:
Fred Drake6659c301998-03-03 22:02:19 +0000310# - sources: .tex, .bib, .sty, *.cls
Fred Drake04cf4dc1998-02-12 22:33:50 +0000311# - useful results: .dvi, .pdf, .ps, .texi, .info
Fred Drakee4837a11998-03-06 21:29:34 +0000312clean:
Fred Drake6eab2fb1998-02-13 03:23:33 +0000313 rm -f @* *~ *.aux *.idx *.ilg *.ind *.log *.toc *.blg *.bbl *.py[co]
Fred Drake6b529ae1998-04-09 15:46:36 +0000314 rm -f *.bak *.orig lib1.texi *.out @webchecker.pickle
Fred Drakef5013f11998-04-13 21:02:49 +0000315 rm -f html-$(RELEASE).tar.gz info-$(RELEASE).tar.gz
316 rm -f pdf-$(RELEASE).tar.gz postscript-$(RELEASE).tar.gz
317 rm -f latex-$(RELEASE).tar.gz
Guido van Rossum5b343731992-07-07 09:06:34 +0000318
Fred Drake03ff6f71997-08-22 18:18:54 +0000319l2hclean:
Fred Drake5de31fc1997-08-22 18:20:33 +0000320 rm -rf api ext lib tut
Fred Drake03ff6f71997-08-22 18:18:54 +0000321
Guido van Rossume83e3801995-03-17 16:01:35 +0000322# Remove temporaries as well as final products
Fred Drakee4837a11998-03-06 21:29:34 +0000323clobber: clean l2hclean
324 rm -f *.dvi *.pdf *.ps *.texi python-*.info python-*.info-[0-9]*
Fred Drake5ad78f31998-02-22 19:47:13 +0000325
326realclean: clobber
327distclean: clobber