diff options
author | Tapani Pälli <[email protected]> | 2017-03-23 09:15:54 +0200 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2017-03-23 14:05:19 +0200 |
commit | 4f69573178dabe53e0f761b3f1e512658d71af98 (patch) | |
tree | 899f8010f0b2cd96089c80497a86fe6b3604b4c4 /src/intel/Makefile.sources | |
parent | bcae4eb502615cc9e5dff5d071c96e6e975a0576 (diff) |
intel: move gen_decoder.* to DECODER_FILES
patch adds DECODER_FILES for libintel_common, this is so that platforms
such as Android not currently using this functionality can opt out.
Fixes: 7d84bb3 ("intel: Move tools/decoder.[ch] to common/gen_decoder.[ch].")
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/intel/Makefile.sources')
-rw-r--r-- | src/intel/Makefile.sources | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/intel/Makefile.sources b/src/intel/Makefile.sources index 839ea47d752..bdd8fe636f2 100644 --- a/src/intel/Makefile.sources +++ b/src/intel/Makefile.sources @@ -9,8 +9,6 @@ BLORP_FILES = \ COMMON_FILES = \ common/gen_debug.c \ common/gen_debug.h \ - common/gen_decoder.c \ - common/gen_decoder.h \ common/gen_device_info.c \ common/gen_device_info.h \ common/gen_l3_config.c \ @@ -18,6 +16,10 @@ COMMON_FILES = \ common/gen_urb_config.c \ common/gen_sample_positions.h +DECODER_FILES = \ + common/gen_decoder.h \ + common/gen_decoder.c + COMPILER_FILES = \ compiler/brw_cfg.cpp \ compiler/brw_cfg.h \ |