Makefile 309 B

1234567891011121314
  1. VALID = examples/*.xml
  2. NONVALID = failing/*.xml
  3. SCHEMA = ../radio-manifest.xsd
  4. all: test
  5. test: $(VALID) $(NONVALID)
  6. examples/%.xml: $(SCHEMA)
  7. xmllint --schema $(SCHEMA) --noout $@
  8. failing/%.xml: $(SCHEMA)
  9. if xmllint --schema $(SCHEMA) --noout $@ 2> /dev/null; then false; else true; fi
  10. .PHONY: all test