mirror of
https://gitlab.freedesktop.org/wayland/wayland-protocols.git
synced 2025-12-20 04:40:06 +01:00
This copies the version 5 of the XML to a new version 6 version, while at the same time the interface names are changed to use the unstable naming convention. A whitespace cleanup was done as no git-blame:ability would be lost anyway. Signed-off-by: Jonas Ådahl <jadahl@gmail.com> Reviewed-by: Mike Blumenkrantz <zmike@osg.samsung.com> Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
39 lines
1.4 KiB
Makefile
39 lines
1.4 KiB
Makefile
unstable_protocols = \
|
|
unstable/pointer-gestures/pointer-gestures-unstable-v1.xml \
|
|
unstable/fullscreen-shell/fullscreen-shell-unstable-v1.xml \
|
|
unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml \
|
|
unstable/text-input/text-input-unstable-v1.xml \
|
|
unstable/input-method/input-method-unstable-v1.xml \
|
|
unstable/xdg-shell/xdg-shell-unstable-v5.xml \
|
|
unstable/xdg-shell/xdg-shell-unstable-v6.xml \
|
|
unstable/relative-pointer/relative-pointer-unstable-v1.xml \
|
|
unstable/pointer-constraints/pointer-constraints-unstable-v1.xml \
|
|
unstable/tablet/tablet-unstable-v1.xml \
|
|
unstable/tablet/tablet-unstable-v2.xml \
|
|
unstable/xdg-foreign/xdg-foreign-unstable-v1.xml \
|
|
unstable/idle-inhibit/idle-inhibit-unstable-v1.xml \
|
|
$(NULL)
|
|
|
|
stable_protocols = \
|
|
stable/presentation-time/presentation-time.xml \
|
|
stable/viewporter/viewporter.xml \
|
|
$(NULL)
|
|
|
|
nobase_dist_pkgdata_DATA = \
|
|
$(unstable_protocols) \
|
|
$(stable_protocols) \
|
|
$(NULL)
|
|
|
|
dist_noinst_DATA = \
|
|
$(sort $(foreach p,$(unstable_protocols),$(dir $p)README)) \
|
|
$(sort $(foreach p,$(stable_protocols),$(dir $p)README)) \
|
|
$(NULL)
|
|
|
|
noarch_pkgconfig_DATA = wayland-protocols.pc
|
|
|
|
dist_check_SCRIPTS = tests/scan.sh
|
|
|
|
TESTS = $(unstable_protocols) $(stable_protocols)
|
|
TEST_EXTENSIONS = .xml
|
|
AM_TESTS_ENVIRONMENT = SCANNER='$(wayland_scanner)'; export SCANNER;
|
|
XML_LOG_COMPILER = $(srcdir)/tests/scan.sh
|