summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/plweb/Makefile
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-01-11 23:56:13 +0000
committerKarl Berry <karl@freefriends.org>2006-01-11 23:56:13 +0000
commitff65b8a94a410662e46dc21a551746354296417f (patch)
tree6adf00638cf46ba2f5ab43d01103be33fea909dc /Master/texmf-dist/source/latex/plweb/Makefile
parent8cd2e61562cb268d6327dba75e43f8e22d71626d (diff)
trunk/Master/texmf-dist/source/latex/plweb
git-svn-id: svn://tug.org/texlive/trunk@452 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/plweb/Makefile')
-rw-r--r--Master/texmf-dist/source/latex/plweb/Makefile59
1 files changed, 59 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/plweb/Makefile b/Master/texmf-dist/source/latex/plweb/Makefile
new file mode 100644
index 00000000000..61a5b3354bc
--- /dev/null
+++ b/Master/texmf-dist/source/latex/plweb/Makefile
@@ -0,0 +1,59 @@
+#******************************************************************************
+#* $Id: Makefile,v 3.0 1994/11/07 11:24:24 gerd Exp gerd $
+#******************************************************************************
+#* Author: Gerd Neugebauer
+#*=============================================================================
+
+INSTALLDIR = /usr/local/lib/texmf/tex/inputs
+
+#=============================================================================
+
+LATEX = latex
+MAKEINDEX = makeindex -s gind.ist
+RM = /bin/rm
+
+#=============================================================================
+
+DISTFILES = README pl.doc pl.ins pl.tex pl.cfg sample.pl Makefile
+
+all: pl.sty pl.dvi
+
+
+pl.sty: pl.dtx pl.ins
+ $(LATEX) pl.ins
+
+pcode.sty: pl.dtx pl.ins
+ $(LATEX) pl.ins
+
+pl.dvi: pl.dtx pl.tex pl.cfg sample.pl
+ $(LATEX) pl.tex
+ $(MAKEINDEX) pl
+ $(LATEX) pl.tex
+
+#=============================================================================
+
+clean:
+ $(RM) -f *.log *.dvi *.bak *~ #*
+
+distclean:
+ $(RM) -f pl.sty pl*.gz pl*.zip *.log *.dvi *.bak *~ #*
+
+install: pl.sty
+ cp pl.sty $(INSTALLDIR)
+
+#=============================================================================
+
+ci:
+ ci -l $(DISTFILES)
+
+VERSION = `grep '^\\\\def\\\\fileversion{.*}' pl.doc | sed -e 's/.*{//' -e 's/[} ]//' -e 's/\\./_/'`
+
+dist:
+ @echo Packing version $(VERSION)
+ @mkdir pl_$(VERSION); cp $(DISTFILES) pl_$(VERSION)
+ @zip pl_$(VERSION).zip pl_$(VERSION)/*
+ @tar -cvf - pl_$(VERSION) | gzip > pl_$(VERSION).tar.gz
+ @$(RM) -rf pl_$(VERSION)
+
+#=============================================================================
+