summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/limap/Makefile
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-01-11 23:54:37 +0000
committerKarl Berry <karl@freefriends.org>2006-01-11 23:54:37 +0000
commitfe8ebf77951d7f5fa746af3d453a3b0ed97a3ade (patch)
tree62167c572b4a826b0e1c42b8c1e402cdd295c752 /Master/texmf-dist/source/latex/limap/Makefile
parent382cb1bea184b72c83c85d6717fce99eb9ab44ce (diff)
trunk/Master/texmf-dist/source/latex/limap
git-svn-id: svn://tug.org/texlive/trunk@356 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/limap/Makefile')
-rw-r--r--Master/texmf-dist/source/latex/limap/Makefile34
1 files changed, 34 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/limap/Makefile b/Master/texmf-dist/source/latex/limap/Makefile
new file mode 100644
index 00000000000..926ee7b955c
--- /dev/null
+++ b/Master/texmf-dist/source/latex/limap/Makefile
@@ -0,0 +1,34 @@
+#******************************************************************************
+#* $Id: Makefile 1.2 2000/03/01 20:11:42 gene Exp gene $
+#******************************************************************************
+#* Author: Gerd Neugebauer
+#*=============================================================================
+
+NAME = limap
+LATEX = latex
+MAKEINDEX = makeindex
+
+
+all: ${NAME}.cls ${NAME}.dvi
+
+${NAME}.cls: ${NAME}.dtx ${NAME}.ins
+ ${RM} ${NAME}.cls ${NAME}.sty
+ ${LATEX} ${NAME}.ins
+
+${NAME}.sty: ${NAME}.dtx ${NAME}.ins
+ ${RM} ${NAME}.cls ${NAME}.sty
+ ${LATEX} ${NAME}.ins
+
+${NAME}.dvi: ${NAME}.dtx
+ ${LATEX} ${NAME}.dtx
+ ${MAKEINDEX} -s gind.ist ${NAME}
+ ${LATEX} ${NAME}.dtx
+
+#------------------------------------------------------------------------------
+
+ci:
+ ci -l ${NAME}.dtx ${NAME}.ins Makefile
+clean:
+ ${RM} ${NAME}.cls ${NAME}.sty
+
+