summaryrefslogtreecommitdiffstats
path: root/images/Makefile
diff options
context:
space:
mode:
authorTommy Reynolds <Tommy.Reynolds@MegaCoder.com>2005-11-23 06:30:23 +0000
committerTommy Reynolds <Tommy.Reynolds@MegaCoder.com>2005-11-23 06:30:23 +0000
commit2d57d1c9184b3602323c75903dd30e385fada7d5 (patch)
treea5085f8cd88da105a704f2259984cfa996e7e9d9 /images/Makefile
parentf2a9f4d1e04f1e56625fc1fc19a92cdb277dd926 (diff)
downloadfedora-doc-utils-2d57d1c9184b3602323c75903dd30e385fada7d5.tar.gz
fedora-doc-utils-2d57d1c9184b3602323c75903dd30e385fada7d5.tar.xz
fedora-doc-utils-2d57d1c9184b3602323c75903dd30e385fada7d5.zip
Sample DRAFT watermark image, SVG source, and a Makefile to rule them all.
Diffstat (limited to 'images/Makefile')
-rw-r--r--images/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/images/Makefile b/images/Makefile
new file mode 100644
index 0000000..a983b31
--- /dev/null
+++ b/images/Makefile
@@ -0,0 +1,17 @@
+.SUFFIXES: .png .svg
+
+%.png: %.svg
+ batik -m image/png -h 768 -w 1024 -d `pwd`/$@ file://`pwd`/$<
+
+SVGFILES=watermark.svg
+PNGFILES=${SVGFILES:.svg=.png}
+
+all: ${PNGFILES}
+
+clean:
+
+distclean clobber: clean
+ ${RM} ${PNGFILES}
+
+check: ${PNGFILES}
+ xv ${PNGFILES}