mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 12:40:23 +01:00
This reverts commit ae7898dfdb.
Turns out the python scripts are _not_ fully python 3 compatible.
As Ilia reported using get_xmlpool.py with LANG=C produces some weird
output - see the link for details.
Even though the issue was spotted with the autoconf build, it exposes a
genuine problem with the script (and lack of lang handling of the meson
build.)
https://lists.freedesktop.org/archives/mesa-dev/2018-August/203508.html
115 lines
2.8 KiB
Makefile
115 lines
2.8 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
|
|
|
|
MKDIR_GEN = $(AM_V_at)$(MKDIR_P) $(@D)
|
|
PYTHON_GEN = $(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS)
|
|
|
|
EXTRA_DIST = \
|
|
util/gen_enum_to_str.py \
|
|
util/meson.build \
|
|
wsi/meson.build \
|
|
meson.build
|
|
|
|
VULKAN_UTIL_SOURCES = \
|
|
$(VULKAN_UTIL_FILES) \
|
|
$(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)
|
|
$(MKDIR_GEN)
|
|
$(PYTHON_GEN) $(srcdir)/util/gen_enum_to_str.py \
|
|
--xml $(vulkan_api_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_GENERATED_SOURCES =
|
|
|
|
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
|
|
|
|
if HAVE_PLATFORM_DRM
|
|
AM_CPPFLAGS += \
|
|
-DVK_USE_PLATFORM_DISPLAY_KHR
|
|
|
|
VULKAN_WSI_SOURCES += $(VULKAN_WSI_DISPLAY_FILES)
|
|
endif
|
|
|
|
if HAVE_XLIB_LEASE
|
|
AM_CPPFLAGS += \
|
|
$(XCB_RANDR_CFLAGS) \
|
|
$(XLIB_RANDR_CFLAGS) \
|
|
-DVK_USE_PLATFORM_XLIB_XRANDR_EXT
|
|
endif
|
|
|
|
CLEANFILES = \
|
|
$(VULKAN_UTIL_GENERATED_FILES) \
|
|
$(VULKAN_WSI_WAYLAND_GENERATED_FILES)
|
|
|
|
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) $(SCANNER_ARG) $< $@
|
|
|
|
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) $(SCANNER_ARG) $< $@
|
|
|
|
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_GENERATED_SOURCES += \
|
|
$(VULKAN_WSI_WAYLAND_GENERATED_FILES)
|
|
|
|
endif
|
|
|
|
nodist_libvulkan_wsi_la_SOURCES = $(VULKAN_WSI_GENERATED_SOURCES)
|
|
|
|
libvulkan_wsi_la_SOURCES = $(VULKAN_WSI_SOURCES)
|