forked from uclathes/uclathes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
62 lines (42 loc) · 1018 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#
# uclathes Makefile
# Copyright (C) 1995 by John Heidemann, <[email protected]>
#
FILES=README \
demo.tex demo.dvi demo.pdf \
demo2big.tex demo2mac.tex demo2rep.tex demo2the.tex demo2int.tex demo2ti.tex demo2rep.pdf demo2the.pdf \
thesdoc.tex thesdoc.pdf \
uclathes.cls uclath12.clo uclathti.clo uclathma.clo \
uclathes.bst Makefile
all: latex dvips
tar: $(FILES)
tar cvf uclathes.tar $(FILES)
tar.gz:
@echo "Make all before doing make tar.gz"
tar czvf uclathes.tar.gz $(FILES)
DVIPS=dvips
PS2PDF=ps2pdf14
latex latex.demo::
latex demo
ps demo.ps::
$(DVIPS) demo
pdf demo.pdf::
$(PS2PDF) demo.ps demo.pdf
latex latex.demo2rep::
latex demo2rep
ps demo2rep.ps::
$(DVIPS) demo2rep
pdf demo2rep.pdf::
$(PS2PDF) demo2rep.ps demo2rep.pdf
latex latex.demo2the::
latex demo2the
ps demo2the.ps::
$(DVIPS) demo2the
pdf demo2the.pdf::
$(PS2PDF) demo2the.ps demo2the.pdf
latex latex.thesdoc::
latex thesdoc
ps thesdoc.ps::
$(DVIPS) thesdoc
pdf thesdoc.pdf::
$(PS2PDF) thesdoc.ps thesdoc.pdf