diff options
author | Mauro Rossi <[email protected]> | 2018-02-12 00:17:23 +0100 |
---|---|---|
committer | Mauro Rossi <[email protected]> | 2018-07-28 12:39:49 +0200 |
commit | c67b36c8a130734beaca560b94976f9cba244b80 (patch) | |
tree | ebc2f93ed93e525ccacbff3d9fb8ce4f61d57604 /src/amd/vulkan/Makefile.sources | |
parent | b4bda6e0668744bc0e7e2b41c6fe496d80e4f244 (diff) |
radv: move vk_format_table.c to generated sources
Android build system will try to compile vk_format_table.c
as a shipped source, but at compile time it will be missing,
we move it to generated source, where it belongs
Fixes: f4e499ec791 ("radv: add initial non-conformant radv vulkan driver")
Signed-off-by: Mauro Rossi <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Reviewed-by: Robert Foss <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/amd/vulkan/Makefile.sources')
-rw-r--r-- | src/amd/vulkan/Makefile.sources | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/amd/vulkan/Makefile.sources b/src/amd/vulkan/Makefile.sources index 152fdd7cb71..53a638362b8 100644 --- a/src/amd/vulkan/Makefile.sources +++ b/src/amd/vulkan/Makefile.sources @@ -69,7 +69,6 @@ VULKAN_FILES := \ radv_util.h \ radv_wsi.c \ si_cmd_buffer.c \ - vk_format_table.c \ vk_format.h \ $(RADV_WS_AMDGPU_FILES) @@ -89,5 +88,6 @@ VULKAN_GENERATED_FILES := \ radv_entrypoints.c \ radv_entrypoints.h \ radv_extensions.c \ - radv_extensions.h + radv_extensions.h \ + vk_format_table.c |