blob: 5d9cf08c64e3530fb409d43277a9a62bb56cbc57 (
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
|
engine ?= pdflatex # Override on the command line
# with engine=latex
# or with engine=lualatex
# or with engine=xetex.
pdf : sty
$(engine) nameauth.dtx
$(engine) nameauth.dtx
makeindex -s gind.ist -o nameauth.ind nameauth.idx
makeindex -s gglo.ist -o nameauth.gls nameauth.glo
$(engine) nameauth.dtx
sty : nameauth.dtx nameauth.ins
$(engine) nameauth.ins
clean :
rm -f nameauth.aux
rm -f nameauth.log
rm -f nameauth.glo
rm -f nameauth.gls
rm -f nameauth.idx
rm -f nameauth.ilg
rm -f nameauth.ind
clobber : clean
rm -f nameauth.dvi
rm -f nameauth.pdf
rm -f nameauth.sty
touch nameauth.*
dist: pdf clean
|