You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
503 B
25 lines
503 B
protocol_sources = \
|
|
desktop-shell.xml \
|
|
screenshooter.xml \
|
|
tablet-shell.xml \
|
|
xserver.xml \
|
|
text.xml \
|
|
input-method.xml \
|
|
workspaces.xml \
|
|
text-cursor-position.xml \
|
|
wayland-test.xml
|
|
|
|
if HAVE_XMLLINT
|
|
.PHONY: validate
|
|
|
|
.%.xml.valid: %.xml
|
|
$(AM_V_GEN)$(XMLLINT) --noout --dtdvalid $(dtddir)/wayland.dtd $^ > $@
|
|
|
|
validate: $(protocol_sources:%.xml=.%.xml.valid)
|
|
|
|
all-local: validate
|
|
|
|
CLEANFILES= $(protocol_sources:%.xml=.%.xml.valid)
|
|
EXTRA_DIST=$(protocol_sources)
|
|
|
|
endif
|
|
|