d8f19d9aa0
autotools wants to have the BUILT_SOURCES ready as soon as it enters the directory, even if they are not used. This meant the build failed if wayland-protocols was not available on the system, even if it was not enabled. As BUILT_SOURCES cannot be used in a conditional (cf.166852ee95), do the same thing as EGL and manually encode the dependencies in the Makefile. Signed-off-by: Daniel Stone <daniels@collabora.com> Fixes:bfa22266cd("vulkan/wsi/wayland: Add support for zwp_dmabuf") Cc: Emil Velikov <emil.velikov@collabora.co.uk> Reported-by: Dieter Nützel <Dieter@nuetzel-hh.de> Tested-by: Dieter Nützel <Dieter@nuetzel-hh.de> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=105211
100 lines
2.7 KiB
Makefile
100 lines
2.7 KiB
Makefile
include Makefile.sources
|
|
|
|
noinst_LTLIBRARIES = libvulkan_wsi.la libvulkan_util.la
|
|
|
|
vulkan_includedir = $(includedir)/vulkan
|
|
vulkan_api_xml = $(top_srcdir)/src/vulkan/registry/vk.xml
|
|
vk_android_native_buffer_xml = $(top_srcdir)/src/vulkan/registry/vk_android_native_buffer.xml
|
|
|
|
MKDIR_GEN = $(AM_V_at)$(MKDIR_P) $(@D)
|
|
PYTHON_GEN = $(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS)
|
|
|
|
EXTRA_DIST = \
|
|
$(top_srcdir)/include/vulkan/vk_android_native_buffer.h \
|
|
util/gen_enum_to_str.py \
|
|
util/meson.build \
|
|
wsi/meson.build \
|
|
meson.build
|
|
|
|
VULKAN_UTIL_SOURCES = \
|
|
$(VULKAN_UTIL_FILES) \
|
|
$(VULKAN_UTIL_GENERATED_FILES)
|
|
|
|
BUILT_SOURCES = \
|
|
$(VULKAN_UTIL_GENERATED_FILES)
|
|
|
|
util/vk_enum_to_str.c util/vk_enum_to_str.h: util/gen_enum_to_str.py \
|
|
$(vulkan_api_xml) $(vk_android_native_buffer_xml)
|
|
$(MKDIR_GEN)
|
|
$(PYTHON_GEN) $(srcdir)/util/gen_enum_to_str.py \
|
|
--xml $(vulkan_api_xml) \
|
|
--xml $(vk_android_native_buffer_xml) \
|
|
--outdir $(top_builddir)/src/vulkan/util
|
|
|
|
libvulkan_util_la_SOURCES = $(VULKAN_UTIL_SOURCES)
|
|
|
|
AM_CPPFLAGS = \
|
|
$(DEFINES) \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/include/drm-uapi \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/src/vulkan/util \
|
|
-I$(top_srcdir)/src/gallium/auxiliary \
|
|
-I$(top_srcdir)/src/gallium/include
|
|
|
|
AM_CFLAGS = \
|
|
$(LIBDRM_CFLAGS) \
|
|
$(VISIBILITY_CFLAGS)
|
|
|
|
VULKAN_WSI_SOURCES = \
|
|
$(VULKAN_WSI_FILES)
|
|
|
|
if HAVE_PLATFORM_X11
|
|
AM_CPPFLAGS += \
|
|
$(XCB_DRI3_CFLAGS) \
|
|
-DVK_USE_PLATFORM_XCB_KHR \
|
|
-DVK_USE_PLATFORM_XLIB_KHR
|
|
|
|
VULKAN_WSI_SOURCES += $(VULKAN_WSI_X11_FILES)
|
|
endif
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
WL_DRM_XML = $(top_srcdir)/src/egl/wayland/wayland-drm/wayland-drm.xml
|
|
|
|
wsi/wayland-drm-protocol.c : $(WL_DRM_XML)
|
|
$(MKDIR_GEN)
|
|
$(AM_V_GEN)$(WAYLAND_SCANNER) code < $< > $@
|
|
|
|
wsi/wayland-drm-client-protocol.h : $(WL_DRM_XML)
|
|
$(MKDIR_GEN)
|
|
$(AM_V_GEN)$(WAYLAND_SCANNER) client-header < $< > $@
|
|
|
|
WL_DMABUF_XML = $(WAYLAND_PROTOCOLS_DATADIR)/unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml
|
|
|
|
wsi/linux-dmabuf-unstable-v1-protocol.c : $(WL_DMABUF_XML)
|
|
$(MKDIR_GEN)
|
|
$(AM_V_GEN)$(WAYLAND_SCANNER) code < $< > $@
|
|
|
|
wsi/linux-dmabuf-unstable-v1-client-protocol.h : $(WL_DMABUF_XML)
|
|
$(MKDIR_GEN)
|
|
$(AM_V_GEN)$(WAYLAND_SCANNER) client-header < $< > $@
|
|
|
|
if HAVE_PLATFORM_WAYLAND
|
|
wsi/linux-dmabuf-unstable-v1-protocol.lo: wsi/linux-dmabuf-unstable-v1-client-protocol.h
|
|
wsi/wayland-drm-protocol.lo: wsi/wayland-drm-client-protocol.h
|
|
wsi/wsi_common_wayland.lo: wsi/linux-dmabuf-unstable-v1-client-protocol.h wsi/wayland-drm-client-protocol.h
|
|
|
|
AM_CPPFLAGS += \
|
|
-I$(top_builddir)/src/vulkan/wsi \
|
|
$(WAYLAND_CLIENT_CFLAGS) \
|
|
-DVK_USE_PLATFORM_WAYLAND_KHR
|
|
|
|
VULKAN_WSI_SOURCES += \
|
|
$(VULKAN_WSI_WAYLAND_FILES) \
|
|
$(VULKAN_WSI_WAYLAND_GENERATED_FILES)
|
|
|
|
endif
|
|
|
|
libvulkan_wsi_la_SOURCES = $(VULKAN_WSI_SOURCES)
|