summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/notes/Makefile
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-01-11 23:55:37 +0000
committerKarl Berry <karl@freefriends.org>2006-01-11 23:55:37 +0000
commitdeced1469774e80cd466296fa223612e32f26057 (patch)
treed9c9e7bdd587f5d84fea182156b82f7184a9d1b9 /Master/texmf-dist/source/latex/notes/Makefile
parent4092dbd7b27c57c2c01b073b57645e87a66cceca (diff)
trunk/Master/texmf-dist/source/latex/notes
git-svn-id: svn://tug.org/texlive/trunk@416 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/notes/Makefile')
-rw-r--r--Master/texmf-dist/source/latex/notes/Makefile48
1 files changed, 48 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/notes/Makefile b/Master/texmf-dist/source/latex/notes/Makefile
new file mode 100644
index 00000000000..c7cba8e1146
--- /dev/null
+++ b/Master/texmf-dist/source/latex/notes/Makefile
@@ -0,0 +1,48 @@
+# This makefile should work with any make
+
+IMGFILES = hand.fig info.fig warn.fig
+EPSFILES = hand.eps info.eps warn.eps
+PDFFILES = hand.pdf info.pdf warn.pdf
+PNGFILES = hand.png info.png warn.png
+
+# GNUmake rules to substitute extenstions
+#EPSFILES := $(patsubst %.fig, %.eps, $(IMGFILES))
+#PDFFILES := $(patsubst %.fig, %.pdf, $(IMGFILES))
+#PNGFILES := $(patsubst %.fig, %.png, $(IMGFILES))
+
+FILES = ${EPSFILES} ${PDFFILES} ${PNGFILES}
+
+all: eps png pdf notes.ps
+
+eps: $(EPSFILES)
+
+png: $(PNGFILES)
+
+pdf: $(PDFFILES)
+
+notes.sty: notes.dtx notes.ins
+ latex notes.ins
+
+notes.dvi: notes.sty
+ ./makedoc
+
+notes.ps: notes.dvi
+ dvips -t a4 -o notes.ps notes.dvi
+
+testnotes.dvi: testnotes.tex notes.sty
+ latex testnotes.tex
+ latex testnotes.tex
+
+clean:
+ rm -f $(FILES)
+
+.SUFFIXES: .fig .eps .png .pdf
+
+.fig.eps:
+ fig2dev -Leps $< $@
+
+.fig.png:
+ fig2dev -Lpng $< $@
+
+.fig.pdf:
+ fig2dev -Lpdf $< $@