summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
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)