Fix validate target.

This commit is contained in:
Bill Nottingham 2008-09-10 22:54:29 +00:00
parent 7962c16a81
commit 745761334b
1 changed files with 2 additions and 2 deletions

View File

@ -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("$<")'