From 745761334b58fac5ed2ab0097fe0f5789061c6ab Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 10 Sep 2008 22:54:29 +0000 Subject: [PATCH] Fix validate target. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a2f50651..2b9e28e1 100644 --- a/Makefile +++ b/Makefile @@ -9,8 +9,8 @@ po: $(XMLINFILES) clean: @rm -fv *~ *.xml -validate: $(FILES) comps.rng - for f in $(FILES); do xmllint --noout --relaxng comps.rng $$f; done +validate: $(XMLFILES) comps.rng + for f in $(XMLFILES); do xmllint --noout --relaxng comps.rng $$f; done %.xml: %.xml.in @python -c 'import libxml2; libxml2.parseFile("$<")'