diff options
author | Karl Berry <karl@freefriends.org> | 2010-12-21 23:56:23 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-12-21 23:56:23 +0000 |
commit | bbaaccee05e7f1de7db31d4d2b56b8fff1f28d85 (patch) | |
tree | f9e6adc1757eb16f3434c4701cde4d3a218dec32 /Master/texmf-dist/doc/latex/productbox/Makefile | |
parent | cc1079ed5cb50a190c54106bb7b9cace5c3cb8c7 (diff) |
productbox 1.0 (21dec10)
git-svn-id: svn://tug.org/texlive/trunk@20820 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/productbox/Makefile')
-rw-r--r-- | Master/texmf-dist/doc/latex/productbox/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/productbox/Makefile b/Master/texmf-dist/doc/latex/productbox/Makefile new file mode 100644 index 00000000000..b2cc3e8e895 --- /dev/null +++ b/Master/texmf-dist/doc/latex/productbox/Makefile @@ -0,0 +1,32 @@ +#****************************************************************************** +#* $Id: Makefile 8332 2010-12-20 22:22:36Z gene $ +#****************************************************************************** +#* Author: Gerd Neugebauer +#*============================================================================= + +all: productbox.pdf + +%.pdf: %.dtx %.sty %.ind + pdflatex -draftmode $*.dtx + pdflatex $*.dtx + +%.sty: %.dtx *.ins + rm -f $*.sty + tex $*.ins + +%.ind: %.idx + makeindex -s gind $* + +%.idx: %.dtx + pdflatex -draftmode $*.dtx + +productbox.tgz dist: productbox.pdf + tar -cvzf productbox.tgz productbox.dtx README Makefile productbox.pdf + +clean: + rm productbox.aux productbox.ilg productbox.idx productbox.log productbox.toc + +distclean: clean + rm productbox.sty + +# |