blob: aef127bf066cec20ffebe6e34fbec85d3f84f19d (
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
|
PACKAGE = elbioimp
$(PACKAGE).cls: $(PACKAGE).ins $(PACKAGE).dtx
tex $(PACKAGE).ins
$(PACKAGE).pdf: $(PACKAGE).cls
pdflatex $(PACKAGE).dtx
bibtex $(PACKAGE)
makeindex -s gglo.ist -o elbioimp.gls elbioimp.glo
makeindex -s gind.ist -o elbioimp.ind elbioimp.idx
pdflatex $(PACKAGE).dtx
test1.pdf: test1.tex $(PACKAGE).cls
pdflatex test1.tex
bibtex test1
pdflatex test1.tex
pdflatex test1.tex
distr: $(PACKAGE).pdf test1.pdf
zip elbioimp README Makefile $(PACKAGE).dtx $(PACKAGE).ins \
$(PACKAGE).cls $(PACKAGE).pdf test1.tex test-bib.bib \
test-ill.png $(PACKAGE)-basis.tex
clean:
rm -f *.aux *.bbl *.blg *.glo *.gls *.idx *.ilg *.ind *.log *.zip *~
|