diff options
author | Lionel Landwerlin <[email protected]> | 2019-03-05 10:38:14 +0000 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2019-03-06 22:46:37 +0000 |
commit | 530927d3f6a303d9ef1eb1e839566ccb0e813036 (patch) | |
tree | b841f6a3c8e8b727c4d68e16c235c9ab69191103 /src/vulkan/Makefile.am | |
parent | ee491a4987d0b1698971343dce9f5460b1521e9a (diff) |
vulkan/util: generate instance/device dispatch tables
This will be used by the overlay instead of system installed
validation layers helpers.
Signed-off-by: Lionel Landwerlin <[email protected]>
Acked-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/vulkan/Makefile.am')
-rw-r--r-- | src/vulkan/Makefile.am | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/vulkan/Makefile.am b/src/vulkan/Makefile.am index ff9a79e9c32..9d5416fc855 100644 --- a/src/vulkan/Makefile.am +++ b/src/vulkan/Makefile.am @@ -24,19 +24,6 @@ EXTRA_DIST = \ 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 \ @@ -119,6 +106,19 @@ VULKAN_WSI_GENERATED_SOURCES += \ endif +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) + nodist_libvulkan_wsi_la_SOURCES = $(VULKAN_WSI_GENERATED_SOURCES) libvulkan_wsi_la_SOURCES = $(VULKAN_WSI_SOURCES) |