Added module and makefile for downloading dtd-flatten.jar
authorMichael Smith <xmldoc@users.sourceforge.net>
Fri, 14 Oct 2005 08:04:53 +0000 (08:04 +0000)
committerMichael Smith <xmldoc@users.sourceforge.net>
Fri, 14 Oct 2005 08:04:53 +0000 (08:04 +0000)
contrib/tools/dtd-flatten/Makefile [new file with mode: 0644]

diff --git a/contrib/tools/dtd-flatten/Makefile b/contrib/tools/dtd-flatten/Makefile
new file mode 100644 (file)
index 0000000..b9e8c7c
--- /dev/null
@@ -0,0 +1,16 @@
+# $Id$
+
+DOWNLOAD_URL ?= http://woodstox.codehaus.org/tools
+DOWNLOAD_FILENAME ?= dtd-flatten.jar
+
+WGET ?= wget
+WGET_OPTS ?=
+
+all: $(DOWNLOAD_FILENAME)
+
+$(DOWNLOAD_FILENAME):
+       $(WGET) $(DOWNLOAD_URL)/$@
+
+clean:
+       $(RM) $(DOWNLOAD_FILENAME)
+