blob: 2a66f887ec3fbabfa4685d009f303a0f8f10a9cb (
plain) (
tree)
|
|
# for pipefail
SHELL=/bin/bash
.SECONDARY:
.DELETE_ON_ERROR:
check:
git diff --exit-code
XMLS = $(shell find -type f -name '*.xml')
check: check-xml
check-xml: $(patsubst %.xml,%.xml.ok,${XMLS})
find -name '*.xml.ok' -delete
find -name '*.xml.out' -delete
%.xml.ok: %.xml %.xml.out
diff $^
touch $@
%.xml.out: %.xml
set -e -o pipefail; \
xmllint --format --schema tools/tmw.xsd $< 2>&1 > $@ | grep -v 'Skipping import of schema'
check: xsd
xsd:
xmllint --format --schema tools/dl/XMLSchema.xsd tools/tmw.xsd > tmw-formatted.xsd
diff tools/tmw.xsd tmw-formatted.xsd
rm tmw-formatted.xsd
|