blob: 3c4d215c15840c31db8d7ded358668635e345911 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
CODE := '\date{1999/03/25}\input{method.dtx}'
LATEX := pdflatex -draftmode $(CODE)
LATEX_FINISH := pdflatex $(CODE)
method.pdf: method.dtx method.ind method.gls
$(LATEX)
$(LATEX)
$(LATEX_FINISH)
method.ind: method.dtx method.idx
makeindex -s gind.ist -o method.ind method.idx
method.gls: method.dtx method.glo
makeindex -s gglo.ist -o method.gls method.glo
method.idx: method.dtx
$(LATEX)
method.glo: method.dtx
$(LATEX)
|