summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/eplain/demo/Makefile
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-12-08 00:25:19 +0000
committerKarl Berry <karl@freefriends.org>2006-12-08 00:25:19 +0000
commit7ff51640e2fd3e968488d312879dee70458f2926 (patch)
tree6b9ede61598bd09a713892640d2d41da6913e509 /Master/texmf-dist/doc/eplain/demo/Makefile
parent8291b74ec6f858e3536a5919b74386a7df1dcc24 (diff)
eplain 3.1 (5dec06)
git-svn-id: svn://tug.org/texlive/trunk@2630 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/eplain/demo/Makefile')
-rw-r--r--Master/texmf-dist/doc/eplain/demo/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/eplain/demo/Makefile b/Master/texmf-dist/doc/eplain/demo/Makefile
new file mode 100644
index 00000000000..45ba215c7aa
--- /dev/null
+++ b/Master/texmf-dist/doc/eplain/demo/Makefile
@@ -0,0 +1,41 @@
+# Makefile for the Eplain demos. This file is public domain.
+
+PDFTEX = pdftex
+DVIPDFM = dvipdfmx
+TEXI2PDF = texi2dvi --pdf
+
+
+.PHONY: all pdftex dvipdfm dvips mostlyclean clean distclean maintainer-clean
+
+
+all: pdftex dvipdfm dvips
+
+#
+# Documents which have to be processed with pdfTeX.
+#
+pdftex: xhyper.pdf lscommnt.pdf
+
+xhyper.pdf: xhyper.tex ctan_lion_350x350.png
+ PDFLATEX=$(PDFTEX) $(TEXI2PDF) xhyper.tex
+
+lscommnt.pdf: lscommnt.tex
+ PDFLATEX=$(PDFTEX) $(TEXI2PDF) lscommnt.tex
+
+#
+# Documents which have to be processed with dvipdfm(x).
+#
+dvipdfm:
+
+#
+# Documents which have to be processed with dvips.
+#
+dvips:
+
+
+clean mostlyclean:
+ rm -f xhyper.{aux,log} lscommnt.log
+
+distclean: clean
+ rm -f xhyper.pdf lscommnt.pdf
+
+maintainer-clean: distclean