mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 22:08:26 +02:00
radv: Fix autotools build.
Forgot it again ....
Fixes: b6347807a9 "radv: Generate icd files."
Acked-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
This commit is contained in:
parent
365850fd68
commit
04ffabf17a
1 changed files with 7 additions and 10 deletions
|
|
@ -142,10 +142,9 @@ BUILT_SOURCES = $(VULKAN_GENERATED_FILES)
|
||||||
CLEANFILES = $(BUILT_SOURCES) dev_icd.json radeon_icd.@host_cpu@.json
|
CLEANFILES = $(BUILT_SOURCES) dev_icd.json radeon_icd.@host_cpu@.json
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
$(top_srcdir)/include/vulkan/vk_icd.h \
|
$(top_srcdir)/include/vulkan/vk_icd.h \
|
||||||
dev_icd.json.in \
|
|
||||||
radeon_icd.json.in \
|
|
||||||
radv_entrypoints_gen.py \
|
radv_entrypoints_gen.py \
|
||||||
radv_extensions.py \
|
radv_extensions.py \
|
||||||
|
radv_icd.py \
|
||||||
vk_format_layout.csv \
|
vk_format_layout.csv \
|
||||||
vk_format_parse.py \
|
vk_format_parse.py \
|
||||||
vk_format_table.py \
|
vk_format_table.py \
|
||||||
|
|
@ -169,14 +168,12 @@ icdconf_DATA = radeon_icd.@host_cpu@.json
|
||||||
# The following is used for development purposes, by setting VK_ICD_FILENAMES.
|
# The following is used for development purposes, by setting VK_ICD_FILENAMES.
|
||||||
noinst_DATA = dev_icd.json
|
noinst_DATA = dev_icd.json
|
||||||
|
|
||||||
dev_icd.json : dev_icd.json.in
|
dev_icd.json : radv_extensions.py radv_icd.py
|
||||||
$(AM_V_GEN) $(SED) \
|
$(AM_V_GEN)$(PYTHON2) $(srcdir)/radv_icd.py \
|
||||||
-e "s#@libvulkan_radeon_path@#${abs_top_builddir}/${LIB_DIR}/libvulkan_radeon.so#" \
|
--lib-path="${abs_top_builddir}/${LIB_DIR}" --out $@
|
||||||
< $(srcdir)/dev_icd.json.in > $@
|
|
||||||
|
|
||||||
radeon_icd.@host_cpu@.json : radeon_icd.json.in
|
vulkan/radeon_icd.@host_cpu@.json : radv_extensions.py radv_icd.py
|
||||||
$(AM_V_GEN) $(SED) \
|
$(AM_V_GEN)$(PYTHON2) $(srcdir)/radv_icd.py \
|
||||||
-e "s#@install_libdir@#${libdir}#" \
|
--lib-path="${libdir}" --out $@
|
||||||
< $(srcdir)/radeon_icd.json.in > $@
|
|
||||||
|
|
||||||
include $(top_srcdir)/install-lib-links.mk
|
include $(top_srcdir)/install-lib-links.mk
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue