diff options
author | Bas Nieuwenhuizen <[email protected]> | 2018-02-23 01:42:07 +0100 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2018-02-23 01:54:12 +0100 |
commit | 032870bedad1fa6c367935dfc7f661d3698c21b1 (patch) | |
tree | f6f9b890ba313e1ca96e1054afe0f4b1f92f10a0 | |
parent | e72ad05c1d6bdedf3b15cfe7ba42c801254d6112 (diff) |
radv: Fix autotools build.
Somewhere along the way the Makefile changes got lost ...
Fixes: 4db78f3a6b "radv: Put supported extensions in a struct."
Acked-by: Dave Airlie <[email protected]>
-rw-r--r-- | src/amd/vulkan/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/amd/vulkan/Makefile.am b/src/amd/vulkan/Makefile.am index 61025968942..80937e38d38 100644 --- a/src/amd/vulkan/Makefile.am +++ b/src/amd/vulkan/Makefile.am @@ -129,7 +129,9 @@ radv_extensions.c: radv_extensions.py \ $(AM_V_GEN)$(PYTHON2) $(srcdir)/radv_extensions.py \ --xml $(vulkan_api_xml) \ --xml $(vk_android_native_buffer_xml) \ - --out $@ + --out-c radv_extensions.c \ + --out-h radv_extensions.h +radv_extensions.h: radv_extensions.c vk_format_table.c: vk_format_table.py \ vk_format_parse.py \ |