summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/crossword/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/crossword/Makefile')
-rw-r--r--Master/texmf-dist/source/latex/crossword/Makefile42
1 files changed, 42 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/crossword/Makefile b/Master/texmf-dist/source/latex/crossword/Makefile
new file mode 100644
index 00000000000..b1372e38a2a
--- /dev/null
+++ b/Master/texmf-dist/source/latex/crossword/Makefile
@@ -0,0 +1,42 @@
+#******************************************************************************
+#* $Id: Makefile,v 1.5 2006/08/11 19:15:05 gene Exp $
+#******************************************************************************
+#* Author: Gerd Neugebauer
+#*=============================================================================
+
+INSTALLDIR = /usr/local/lib/texmf/tex/latex/cwpuzzle
+
+FILES = cwpuzzle.dtx \
+ cwpuzzle.ins \
+ Makefile \
+ README
+
+LATEX = latex
+PDFLATEX = pdflatex
+MAKEINDEX = makeindex
+RM = rm -f
+INSTALL = install
+MKDIR = mkdir
+
+#*=============================================================================
+
+all: cwpuzzle.sty cwpuzzle.pdf
+
+cwpuzzle.sty sty: cwpuzzle.dtx cwpuzzle.ins
+ $(RM) cwpuzzle.cls cwpuzzle.sty
+ $(LATEX) cwpuzzle.ins
+
+cwpuzzle.dvi 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
+
+cwpuzzle.pdf pdf: cwpuzzle.dtx cwpuzzle.sty
+ $(PDFLATEX) cwpuzzle.dtx
+ $(PDFLATEX) cwpuzzle.dtx
+ $(MAKEINDEX) -s gind.ist cwpuzzle
+ $(MAKEINDEX) -s gglo.ist -o cwpuzzle.gls cwpuzzle.glo
+ $(PDFLATEX) cwpuzzle.dtx
+