Module: Mesa Branch: 18.2 Commit: 9ddff68f6fae40308d3a38f0146f4e139e8b2e1b URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9ddff68f6fae40308d3a38f0146f4e139e8b2e1b
Author: Andres Gomez <[email protected]> Date: Thu Aug 2 19:39:06 2018 +0300 intel/tools: add error2aub creation into autotools Tarball distribution is done through "make distcheck". We include the meson targets also into autotools so they won't fail when building from the tarball. Fixes: 6a60beba408 ("intel/tools: Add an error state to aub translator") Cc: Jason Ekstrand <[email protected]> Cc: Lionel Landwerlin <[email protected]> Cc: Dylan Baker <[email protected]> Signed-off-by: Andres Gomez <[email protected]> Reviewed-by: Lionel Landwerlin <[email protected]> Reviewed-by: Dylan Baker <[email protected]> (cherry picked from commit 2d4d139877c0aa8efc323be6d9c37c846c8b193a) --- src/intel/Makefile.tools.am | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/src/intel/Makefile.tools.am b/src/intel/Makefile.tools.am index b00cc8cc2c..00624084e6 100644 --- a/src/intel/Makefile.tools.am +++ b/src/intel/Makefile.tools.am @@ -21,7 +21,9 @@ noinst_PROGRAMS += \ tools/aubinator \ - tools/aubinator_error_decode + tools/aubinator_error_decode \ + tools/error2aub + tools_aubinator_SOURCES = \ tools/aubinator.c \ @@ -59,3 +61,23 @@ tools_aubinator_error_decode_LDADD = \ tools_aubinator_error_decode_CFLAGS = \ $(AM_CFLAGS) \ $(ZLIB_CFLAGS) + + +tools_error2aub_SOURCES = \ + tools/gen_context.h \ + tools/gen8_context.h \ + tools/gen10_context.h \ + tools/aub_write.h \ + tools/aub_write.c \ + tools/error2aub.c + +tools_error2aub_CFLAGS = \ + $(AM_CFLAGS) \ + $(ZLIB_CFLAGS) + +tools_error2aub_LDADD = \ + dev/libintel_dev.la \ + $(PTHREAD_LIBS) \ + $(DLOPEN_LIBS) \ + $(ZLIB_LIBS) \ + -lm _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
