-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
68 lines (51 loc) · 1.6 KB
/
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
61
62
63
64
65
66
67
#############################################################################
MF=$(filter-out feynmf.mf, $(wildcard *.mf))
LIST1=$(MF:.mf=.tfm)
LIST2=$(MF:.mf=.600pk)
LIST3=$(MF:.mf=.t1)
LIST4=$(MF:.mf=.2602gf)
#############################################################################
all:
@for f in $(MF); do mf $$f; done;
latex phd.tex
dvips phd.dvi
#############################################################################
pdf:
# @for f in $(MF); do mf $$f; done;
pdflatex phd.tex
#############################################################################
opt:
pdftops \
-paper match \
-nocrop \
-noshrink \
-nocenter \
-q \
phd.pdf phd.ps
ps2pdf14 \
-dEmbedAllFonts=true \
-dUseFlateCompression=true \
-dOptimize=true \
-dProcessColorModel=/DeviceRGB \
-dUseCIEColor=true \
-r72 \
-dDownsampleGrayImages=true \
-dGrayImageResolution=72 \
-dAutoFilterGrayImages=false \
-dGrayImageDownsampleType=/Bicubic \
-dDownsampleMonoImages=true \
-dMonoImageResolution=72 \
-dMonoImageDownsampleType=/Bicubic \
-dDownsampleColorImages=true \
-dColorImageResolution=72 \
-dAutoFilterColorImages=false \
-dColorImageDownsampleType=/Bicubic \
-dPDFSETTINGS=/prepress \
phd.ps phd_opt.pdf
#############################################################################
clean:
rm -fr *.pdf *.ps *.dvi *.aux *.log *.toc $(MF) $(LIST1) $(LIST2) $(LIST3) $(LIST4)
#############################################################################
commit:
@git commit -a -m="just a commit" ; git push
#############################################################################