Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2612d1 commit a52117eCopy full SHA for a52117e
1 file changed
Doc/Makefile
@@ -4,6 +4,8 @@
4
# latex tut
5
# latex lib
6
7
+# latex ref
8
9
# (Doing everything twice so the table of contents comes out right!)
10
11
LATEX= latex
@@ -12,6 +14,10 @@ TEXPREVIEW= xdvi
12
14
13
15
PRINT= lpr
16
17
+ALL= tut.ps lib.ps ref.ps
18
+
19
+all: $(ALL)
20
21
tut: tut.dvi
22
$(TEXPREVIEW) tut
23
@@ -22,9 +28,10 @@ lib: lib.dvi
28
29
lib.dvi lib.ps: lib.toc lib.tex lib1.tex lib2.tex lib3.tex myformat.sty
24
30
25
-ALL= tut.ps lib.ps
31
+ref: ref.dvi
32
+ $(TEXPREVIEW) ref
26
33
27
-all: $(ALL)
34
+ref.dvi ref.ps: ref.toc ref.tex myformat.sty
35
36
print: $(ALL)
37
$(PRINT) $(ALL)
0 commit comments