From b145c225b4684f6fe8ac94292e405d52cbbaae47 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Mon, 16 Jan 2006 11:21:59 +0000 Subject: [PATCH] New -- used only for validating configuration files against schema. --- etc/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 etc/Makefile diff --git a/etc/Makefile b/etc/Makefile new file mode 100644 index 0000000..5e53e1a --- /dev/null +++ b/etc/Makefile @@ -0,0 +1,10 @@ +# $Id: Makefile,v 1.1 2006-01-16 11:21:59 mike Exp $ + +# This doesn't actually build anything, it just tests whether the +# configuration files here correspond with the schema. + +test: test-config0 test-config1 + +test-%: %.xml config.xsd + xmllint --noout --schema config.xsd $< + -- 1.7.10.4