freedreno/afuc: Install asm/disasm

Make the name a bit longer, since when installed it's not tucked away
under afuc/ anymore.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6368>
This commit is contained in:
Connor Abbott
2020-08-18 14:37:13 +02:00
committed by Marge Bot
parent f0b87186df
commit d145fcc1c1

View File

@@ -37,7 +37,7 @@ afuc_lexer = custom_target(
)
asm = executable(
'asm',
'afuc-asm',
[
'asm.c',
afuc_lexer,
@@ -51,11 +51,11 @@ asm = executable(
],
dependencies: [],
build_by_default : with_tools.contains('freedreno'),
install: false,
install: install_fd_decode_tools,
)
disasm = executable(
'disasm',
'afuc-disasm',
'disasm.c',
include_directories: [
inc_freedreno_rnn,
@@ -65,5 +65,5 @@ disasm = executable(
],
dependencies: [],
build_by_default : with_tools.contains('freedreno'),
install: false
install: install_fd_decode_tools,
)