blob: dc81865090dd4ada324d04acab41ab2d949d339d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
all: apxproof.pdf apxproof.sty
clean:
-rm -f *.aux *.log *.gl? *.idx *.ilg *.fls *.ind *.axp *.bbl *.blg *.hd *.out
%.pdf: %.dtx %.sty
pdflatex $<
makeindex -s gind.ist $(patsubst %.pdf,%.idx,$@)
makeindex -s gglo.ist -o $(patsubst %.pdf,%.gls,$@) $(patsubst %.pdf,%.glo,$@)
bibtex $(patsubst %.pdf,%,$@)
bibtex bu1
pdflatex $<
pdflatex $<
%.sty: %.ins %.dtx
-rm $@
latex $<
|