summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/gene/productbox/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/gene/productbox/Makefile')
-rw-r--r--macros/latex/contrib/gene/productbox/Makefile54
1 files changed, 54 insertions, 0 deletions
diff --git a/macros/latex/contrib/gene/productbox/Makefile b/macros/latex/contrib/gene/productbox/Makefile
new file mode 100644
index 0000000000..e92f9a8414
--- /dev/null
+++ b/macros/latex/contrib/gene/productbox/Makefile
@@ -0,0 +1,54 @@
+#******************************************************************************
+#* $Id: Makefile 8333 2010-12-29 19:58:06Z gene $
+#******************************************************************************
+#* Author: Gerd Neugebauer
+#*=============================================================================
+
+DISTFILES = productbox.ins \
+ productbox.dtx \
+ productbox.bib \
+ README \
+ Makefile \
+ productbox.pdf
+
+all: productbox.pdf
+
+%.pdf: %.dtx productbox.sty %.bbl %.ind %.gls
+ pdflatex -interaction=batchmode -draftmode $*.dtx
+ pdflatex -interaction=batchmode $*.dtx
+ ${RM} $*.out
+
+%.sty: %.dtx *.ins
+ rm -f $*.sty
+ tex $*.ins
+
+%.bbl: %.aux *.bib
+ bibtex $*
+
+%.ind: %.idx
+ makeindex -s gind $*.idx
+
+%.idx: %.dtx
+ pdflatex -draftmode $*.dtx
+
+%.aux: %.dtx
+ pdflatex -draftmode $*.dtx
+
+%.gls: %.glo
+ makeindex -s gglo -o $*.gls $*.glo
+
+%.glo: %.dtx
+ pdflatex -draftmode $*.dtx
+
+#------------------------------------------------------------------------------
+
+productbox.tgz dist: productbox.pdf
+ tar -cvzf productbox.tgz ${DISTFILES}
+
+clean:
+ ${RM} productbox.aux productbox.ilg productbox.idx productbox.log productbox.toc productbox.glo productbox.out *~
+
+distclean: clean
+ ${RM} productbox.sty productbox.pdf
+
+#