blob: 80d102c327e87671d446d60107c857e904e397d3 (
plain)
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
|
##
## Makefile
##
##
##
##
##
file=pdfx
all: pdf out index changes
make pdf
out:
if [ -f $(file).links ] ; then cp $(file).links tmp.links; fi ;
# sed 's/BOOKMARK/fxmark/g;' tmp.out > x.out; mv x.out tmp.out ;
pdf:
pdflatex $(file).dtx
index:
makeindex -s gind.ist -o $(file).ind $(file).idx
changes:
makeindex -s gglo.ist -o $(file).gls $(file).glo
xview:
mupdf -r 100 $(file).pdf &>/dev/null
view:
acroread $(file).pdf
ins:
latex pdfx.ins
diff:
diff $(file).sty ../$(file).sty |less
copy:
cp $(file).sty ../
|