summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-11-21 13:54:36 (GMT)
committerGuido van Rossum <guido@python.org>1991-11-21 13:54:36 (GMT)
commita52117e98d595f64bd2e1fdde2df983e3da2b487 (patch)
tree2cdcab0547902d541c0b5bee82046fac9e000da3 /Doc
parentf2612d1edf7146ed7e70d6023693032f0a86b881 (diff)
downloadcpython-a52117e98d595f64bd2e1fdde2df983e3da2b487.zip
cpython-a52117e98d595f64bd2e1fdde2df983e3da2b487.tar.gz
cpython-a52117e98d595f64bd2e1fdde2df983e3da2b487.tar.bz2
Added ref.tex.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/Doc/Makefile b/Doc/Makefile
index 31834d5..e209e47 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -4,6 +4,8 @@
# latex tut
# latex lib
# latex lib
+# latex ref
+# latex ref
# (Doing everything twice so the table of contents comes out right!)
LATEX= latex
@@ -12,6 +14,10 @@ TEXPREVIEW= xdvi
PRINT= lpr
+ALL= tut.ps lib.ps ref.ps
+
+all: $(ALL)
+
tut: tut.dvi
$(TEXPREVIEW) tut
@@ -22,9 +28,10 @@ lib: lib.dvi
lib.dvi lib.ps: lib.toc lib.tex lib1.tex lib2.tex lib3.tex myformat.sty
-ALL= tut.ps lib.ps
+ref: ref.dvi
+ $(TEXPREVIEW) ref
-all: $(ALL)
+ref.dvi ref.ps: ref.toc ref.tex myformat.sty
print: $(ALL)
$(PRINT) $(ALL)