summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/plari/Makefile
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-09-07 22:51:47 +0000
committerKarl Berry <karl@freefriends.org>2006-09-07 22:51:47 +0000
commit341f91f17353e6b5aaaed2511d38a55a1761040b (patch)
tree674664b81f6f2ccb6d3e2810d889fff82578c4e4 /Master/texmf-dist/source/latex/plari/Makefile
parentb7d59cb22d16fdd1e597b9c568ca8c39fcdcbe9e (diff)
new latex package plari
git-svn-id: svn://tug.org/texlive/trunk@2096 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/plari/Makefile')
-rw-r--r--Master/texmf-dist/source/latex/plari/Makefile53
1 files changed, 53 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/plari/Makefile b/Master/texmf-dist/source/latex/plari/Makefile
new file mode 100644
index 00000000000..aae5d733acb
--- /dev/null
+++ b/Master/texmf-dist/source/latex/plari/Makefile
@@ -0,0 +1,53 @@
+# plari - typeset stageplay scripts with LaTeX2e
+# Copyright (C) 1998 Antti-Juhani Kaijanaho <gaia@iki.fi>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; see the file COPYING. If not, write to
+# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+
+LATEX=latex
+INSTALL=install
+TEXHASH=texhash
+
+TEXMF=/usr/local/lib/texmf
+
+packagename = plari
+doc = $(TEXMF)/doc/$(packagename)
+latex = $(TEXMF)/tex/latex/$(packagename)
+
+all: doc cls
+
+doc: plari.dvi
+cls: plari.cls
+
+%.dvi: %.dtx
+ $(LATEX) $<
+
+%.cls: %.ins %.dtx
+ $(LATEX) $<
+
+clean:
+ $(RM) *~ *.log *.cls *.aux *.dvi
+ $(RM) -r auto
+
+install: all
+ $(INSTALL) -m755 -d $(doc)
+ $(INSTALL) -m755 -d $(latex)
+ $(INSTALL) -m644 plari.cls $(latex)
+ $(INSTALL) -m644 plari.dvi $(doc)
+
+texhash: install
+ $(TEXHASH)
+
+.PHONY: all doc cls clean install texhash