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.sources | |
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.sources')
-rw-r--r-- | src/intel/Makefile.sources | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/intel/Makefile.sources b/src/intel/Makefile.sources index 91c71a8dfaf..1adf6f990c6 100644 --- a/src/intel/Makefile.sources +++ b/src/intel/Makefile.sources @@ -9,10 +9,13 @@ BLORP_FILES = \ COMMON_FILES = \ common/gen_clflush.h \ + common/gen_batch_decoder.c \ common/gen_debug.c \ common/gen_debug.h \ common/gen_decoder.c \ common/gen_decoder.h \ + common/gen_disasm.c \ + common/gen_disasm.h \ common/gen_defines.h \ common/gen_l3_config.c \ common/gen_l3_config.h \ |