diff options
author | Kenneth Graunke <[email protected]> | 2018-05-01 17:27:08 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2018-05-02 09:27:56 -0700 |
commit | 7c22c150c40b3e2da892604d21c749aaec0b3cfd (patch) | |
tree | 441b1953cdf4be16f52dcf2bb3f31b90b037df16 /src/intel/Makefile.tools.am | |
parent | 5c049718318bfd9957aaa8f232d40286e101f02f (diff) |
intel: Move batch decoder/disassembler from tools/ to common/
Making these part of libintel_common allows us to use them in the DRI
driver. The standalone tool binaries already link against the common
library, too, so it's no harder for them.
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/Makefile.tools.am')
-rw-r--r-- | src/intel/Makefile.tools.am | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/intel/Makefile.tools.am b/src/intel/Makefile.tools.am index a8685c24e1c..b00cc8cc2cb 100644 --- a/src/intel/Makefile.tools.am +++ b/src/intel/Makefile.tools.am @@ -25,9 +25,6 @@ noinst_PROGRAMS += \ tools_aubinator_SOURCES = \ tools/aubinator.c \ - tools/disasm.c \ - tools/gen_batch_decoder.c \ - tools/gen_disasm.h \ tools/intel_aub.h tools_aubinator_CFLAGS = \ @@ -48,10 +45,7 @@ tools_aubinator_LDADD = \ tools_aubinator_error_decode_SOURCES = \ - tools/aubinator_error_decode.c \ - tools/disasm.c \ - tools/gen_batch_decoder.c \ - tools/gen_disasm.h + tools/aubinator_error_decode.c tools_aubinator_error_decode_LDADD = \ common/libintel_common.la \ |