freedreno/isa: simplify custom_target

Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Reviewed-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11321>
This commit is contained in:
Christian Gmeiner 2021-05-11 08:05:04 +02:00 committed by Marge Bot
parent 3b52d64474
commit c3b14ade55

View file

@ -36,7 +36,7 @@ ir3_isa_c = custom_target(
input: ['decode.py', 'ir3.xml'],
output: 'ir3-isa.c',
command: [
prog_python, '@INPUT0@', '@INPUT1@', '@OUTPUT@'
prog_python, '@INPUT@', '@OUTPUT@'
],
depend_files: isa_depend_files,
)
@ -78,7 +78,7 @@ encode_h = custom_target(
input: ['encode.py', 'ir3.xml'],
output: 'encode.h',
command: [
prog_python, '@INPUT0@', '@INPUT1@', '@OUTPUT@'
prog_python, '@INPUT@', '@OUTPUT@'
],
depend_files: isa_depend_files,
)