diff options
author | Jordan Justen <[email protected]> | 2018-02-26 15:39:59 -0800 |
---|---|---|
committer | Jordan Justen <[email protected]> | 2018-03-05 09:47:37 -0800 |
commit | 272bef0601a1bdb5292771aefc8d62fcbdf4c47f (patch) | |
tree | c94ae513a916ed81151067da24260bbb424e5deb /src/intel/Makefile.tools.am | |
parent | 9a0d7bb48c93e7d0109751469a8b32c94e85bc24 (diff) |
intel: Split gen_device_info out into libintel_dev
Split out the device info so isl doesn't depend on intel/common. Now
it will depend on the new intel/dev device info lib.
This will allow the decoder in intel/common to use isl, allowing us to
apply Ken's patch that removes the genxml duplication of surface
formats.
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Samuel Iglesias Gonsálvez <[email protected]>
Diffstat (limited to 'src/intel/Makefile.tools.am')
-rw-r--r-- | src/intel/Makefile.tools.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/intel/Makefile.tools.am b/src/intel/Makefile.tools.am index 944ee19805c..a8685c24e1c 100644 --- a/src/intel/Makefile.tools.am +++ b/src/intel/Makefile.tools.am @@ -37,6 +37,8 @@ tools_aubinator_CFLAGS = \ tools_aubinator_LDADD = \ common/libintel_common.la \ compiler/libintel_compiler.la \ + dev/libintel_dev.la \ + isl/libisl.la \ $(top_builddir)/src/util/libmesautil.la \ $(PER_GEN_LIBS) \ $(PTHREAD_LIBS) \ @@ -54,6 +56,8 @@ tools_aubinator_error_decode_SOURCES = \ tools_aubinator_error_decode_LDADD = \ common/libintel_common.la \ compiler/libintel_compiler.la \ + dev/libintel_dev.la \ + isl/libisl.la \ $(top_builddir)/src/util/libmesautil.la \ $(PTHREAD_LIBS) \ $(ZLIB_LIBS) |