summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/productbox/Makefile
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-12-21 23:56:23 +0000
committerKarl Berry <karl@freefriends.org>2010-12-21 23:56:23 +0000
commitbbaaccee05e7f1de7db31d4d2b56b8fff1f28d85 (patch)
treef9e6adc1757eb16f3434c4701cde4d3a218dec32 /Master/texmf-dist/doc/latex/productbox/Makefile
parentcc1079ed5cb50a190c54106bb7b9cace5c3cb8c7 (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/Makefile32
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
+
+#