66# This is a bit of a mess. The main documents are:
77# tut -- Tutorial (file tut.tex)
88# lib -- Library Reference (file lib.tex, inputs lib*.tex)
9- # ref -- Language Reference (file ref.tex, inputs ref*.tex)
109# ext -- Extending and Embedding (file ext.tex)
1110#
11+ # 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+ #
1217# The main target "make all" creates DVI and PostScript for these
1318# four. You can also do "make lib" (etc.) to process individual
1419# documents.
@@ -74,20 +79,19 @@ DOCDESTDIR= $LIBDEST/doc
7479# Main target
7580all : all-ps
7681
77- all-dvi : tut.dvi lib.dvi ref.dvi ext.dvi
78- all-ps : tut.ps lib.ps ref.ps ext.ps
82+ all-dvi : tut.dvi lib.dvi ext.dvi
83+ all-ps : tut.ps lib.ps ext.ps
7984
8085# Individual document fake targets
8186tut : tut.ps
8287lib : lib.ps
83- ref : ref.ps
8488ext : ext.ps
8589
8690# CWI Quarterly document fake target
8791qua : qua.ps
8892
8993# Dependencies
90- tut.dvi lib.dvi ref.dvi ext.dvi : myformat.sty fix_hack
94+ tut.dvi lib.dvi ext.dvi : myformat.sty fix_hack
9195
9296# Tutorial document
9397tut.dvi : tut.tex
@@ -97,18 +101,6 @@ tut.dvi: tut.tex
97101tut.ps : tut.dvi
98102 $(DVIPS ) tut > tut.ps
99103
100- # Reference document
101- ref.dvi : ref.tex ref1.tex ref2.tex ref3.tex ref4.tex ref5.tex ref6.tex \
102- ref7.tex ref8.tex
103- touch ref.ind
104- $(LATEX ) ref
105- ./fix_hack ref.idx
106- $(MAKEINDEX ) ref
107- $(LATEX ) ref
108-
109- ref.ps : ref.dvi
110- $(DVIPS ) ref > ref.ps
111-
112104# LaTeX source files for the Python Library Reference
113105LIBFILES = lib.tex \
114106 libintro.tex libobjs.tex libtypes.tex libexcs.tex libfuncs.tex \
@@ -216,11 +208,6 @@ l2htut: tut.dvi
216208 @rm -rf python-tut
217209 mv tut python-tut
218210
219- l2href : ref.dvi
220- $(L2H ) $(L2HARGS ) ref.tex
221- @rm -rf python-ref
222- mv ref python-ref
223-
224211l2hext : ext.dvi
225212 $(L2H ) $(L2HARGS ) ext.tex
226213 @rm -rf python-ext
0 commit comments