summaryrefslogtreecommitdiffstats
path: root/Doc/Makefile
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-10-22 20:00:02 (GMT)
committerGuido van Rossum <guido@python.org>1996-10-22 20:00:02 (GMT)
commit1f17543ee7deba553d560fb6e1fb616c04079ec0 (patch)
tree7e7be752ff0ea5a0b44593c8f123ae6ee9559b8c /Doc/Makefile
parent6a05f951cd8a1acafaf77e248ec60edd1ce6c08d (diff)
downloadcpython-1f17543ee7deba553d560fb6e1fb616c04079ec0.zip
cpython-1f17543ee7deba553d560fb6e1fb616c04079ec0.tar.gz
cpython-1f17543ee7deba553d560fb6e1fb616c04079ec0.tar.bz2
Removed LaTeX version of reference manual. Added ref/ref.ps.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r--Doc/Makefile31
1 files changed, 9 insertions, 22 deletions
diff --git a/Doc/Makefile b/Doc/Makefile
index 9a32058..e609518 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -6,9 +6,14 @@
# This is a bit of a mess. The main documents are:
# tut -- Tutorial (file tut.tex)
# lib -- Library Reference (file lib.tex, inputs lib*.tex)
-# ref -- Language Reference (file ref.tex, inputs ref*.tex)
# ext -- Extending and Embedding (file ext.tex)
#
+# The Reference Manual is now maintained as a FrameMaker document.
+# See the subdirectory ref; PostScript is included as ref/ref.ps.
+# (In the future, the Tutorial will also be converted to FrameMaker;
+# the other documents will be maintained in a text format such
+# as LaTeX or perhaps TIM.)
+#
# The main target "make all" creates DVI and PostScript for these
# four. You can also do "make lib" (etc.) to process individual
# documents.
@@ -74,20 +79,19 @@ DOCDESTDIR= $LIBDEST/doc
# Main target
all: all-ps
-all-dvi: tut.dvi lib.dvi ref.dvi ext.dvi
-all-ps: tut.ps lib.ps ref.ps ext.ps
+all-dvi: tut.dvi lib.dvi ext.dvi
+all-ps: tut.ps lib.ps ext.ps
# Individual document fake targets
tut: tut.ps
lib: lib.ps
-ref: ref.ps
ext: ext.ps
# CWI Quarterly document fake target
qua: qua.ps
# Dependencies
-tut.dvi lib.dvi ref.dvi ext.dvi: myformat.sty fix_hack
+tut.dvi lib.dvi ext.dvi: myformat.sty fix_hack
# Tutorial document
tut.dvi: tut.tex
@@ -97,18 +101,6 @@ tut.dvi: tut.tex
tut.ps: tut.dvi
$(DVIPS) tut >tut.ps
-# Reference document
-ref.dvi: ref.tex ref1.tex ref2.tex ref3.tex ref4.tex ref5.tex ref6.tex \
- ref7.tex ref8.tex
- touch ref.ind
- $(LATEX) ref
- ./fix_hack ref.idx
- $(MAKEINDEX) ref
- $(LATEX) ref
-
-ref.ps: ref.dvi
- $(DVIPS) ref >ref.ps
-
# LaTeX source files for the Python Library Reference
LIBFILES = lib.tex \
libintro.tex libobjs.tex libtypes.tex libexcs.tex libfuncs.tex \
@@ -216,11 +208,6 @@ l2htut: tut.dvi
@rm -rf python-tut
mv tut python-tut
-l2href: ref.dvi
- $(L2H) $(L2HARGS) ref.tex
- @rm -rf python-ref
- mv ref python-ref
-
l2hext: ext.dvi
$(L2H) $(L2HARGS) ext.tex
@rm -rf python-ext