diff options
author | Karl Berry <karl@freefriends.org> | 2010-11-18 00:32:09 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-11-18 00:32:09 +0000 |
commit | 6ddbdfefdfa08fd1da77e6d5f8d3edec8e81d15c (patch) | |
tree | dc7e2b41af395999f5243cafd1b014d5130ea046 /Master/texmf-dist/doc/latex/elbioimp/Makefile | |
parent | 57a41168bf79aad7fe801d13fe653640dab69686 (diff) |
elbioimp 1.1 (17nov10)
git-svn-id: svn://tug.org/texlive/trunk@20469 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/elbioimp/Makefile')
-rw-r--r-- | Master/texmf-dist/doc/latex/elbioimp/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/elbioimp/Makefile b/Master/texmf-dist/doc/latex/elbioimp/Makefile new file mode 100644 index 00000000000..aef127bf066 --- /dev/null +++ b/Master/texmf-dist/doc/latex/elbioimp/Makefile @@ -0,0 +1,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 *~ |