diff options
author | Rob Austein <sra@hactrn.net> | 2009-04-22 13:46:07 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-04-22 13:46:07 +0000 |
commit | 725bc9130dd16ffffa5277382b23cda6c069ef6c (patch) | |
tree | 5af44e18a41443c108fcd22444fedea9c5fcb2a5 /rpkid.stable/up-down-protocol-samples/Makefile | |
parent | 3752b1127d4834b00a93153b96d23a370738c942 (diff) |
Branch stable code from before start of the event-driven rewrite.
svn path=/rpkid.stable; revision=2354
Diffstat (limited to 'rpkid.stable/up-down-protocol-samples/Makefile')
-rw-r--r-- | rpkid.stable/up-down-protocol-samples/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/rpkid.stable/up-down-protocol-samples/Makefile b/rpkid.stable/up-down-protocol-samples/Makefile new file mode 100644 index 00000000..10ee791a --- /dev/null +++ b/rpkid.stable/up-down-protocol-samples/Makefile @@ -0,0 +1,11 @@ +XMLLINT = xmllint --noout --relaxng +JING = java -jar /usr/local/share/java/classes/jing.jar +SCHEMA = ../up-down-medium-schema.rng + +all: jing xmllint + +jing: + ${JING} ${SCHEMA} *.xml + +xmllint: + ${XMLLINT} ${SCHEMA} *.xml |