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>
diff --git a/src/freedreno/afuc/meson.build b/src/freedreno/afuc/meson.build
index 8a62a33..ccb258d 100644
--- a/src/freedreno/afuc/meson.build
+++ b/src/freedreno/afuc/meson.build
@@ -37,7 +37,7 @@
 )
 
 asm = executable(
-  'asm',
+  'afuc-asm',
   [
     'asm.c',
     afuc_lexer,
@@ -51,11 +51,11 @@
   ],
   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 @@
   ],
   dependencies: [],
   build_by_default : with_tools.contains('freedreno'),
-  install: false
+  install: install_fd_decode_tools,
 )