summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/cwpuzzle/Makefile
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-01-11 23:52:12 +0000
committerKarl Berry <karl@freefriends.org>2006-01-11 23:52:12 +0000
commitb2539d622ace09a4c7321ffb749e0d15f92c6d28 (patch)
tree3bb8b17d6b8168243202366e5f022673233ed549 /Master/texmf-dist/source/latex/cwpuzzle/Makefile
parent4a7c88ec3ceec0d0f66d8af671597598ef213bf7 (diff)
trunk/Master/texmf-dist/source/latex/cwpuzzle
git-svn-id: svn://tug.org/texlive/trunk@216 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/cwpuzzle/Makefile')
-rw-r--r--Master/texmf-dist/source/latex/cwpuzzle/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/cwpuzzle/Makefile b/Master/texmf-dist/source/latex/cwpuzzle/Makefile
new file mode 100644
index 00000000000..eafb1b58dde
--- /dev/null
+++ b/Master/texmf-dist/source/latex/cwpuzzle/Makefile
@@ -0,0 +1,33 @@
+#******************************************************************************
+#* $Id: Makefile,v 1.1 1996/11/25 21:20:35 gerd Exp gerd $
+#******************************************************************************
+#* Author: Gerd Neugebauer
+#*=============================================================================
+
+INSTALLDIR = /usr/local/lib/texmf/tex/latex/cwpuzzle
+
+FILES = cwpuzzle.dtx \
+ cwpuzzle.ins \
+ Makefile
+
+LATEX = latex
+MAKEINDEX = makeindex
+RM = rm -f
+INSTALL = install
+MKDIR = mkdir
+
+#*=============================================================================
+
+all: cwpuzzle.sty cwpuzzle.dvi
+
+cwpuzzle.sty: cwpuzzle.dtx cwpuzzle.ins
+ $(RM) cwpuzzle.cls cwpuzzle.sty
+ $(LATEX) cwpuzzle.ins
+
+cwpuzzle.dvi: cwpuzzle.dtx cwpuzzle.sty
+ $(LATEX) cwpuzzle.dtx
+ $(LATEX) cwpuzzle.dtx
+ $(MAKEINDEX) -s gind.ist cwpuzzle
+ $(MAKEINDEX) -s gglo.ist -o cwpuzzle.gls cwpuzzle.glo
+ $(LATEX) cwpuzzle.dtx
+