diff options
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/Makefile.tools.am | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/src/intel/Makefile.tools.am b/src/intel/Makefile.tools.am index b00cc8cc2cb..00624084e6f 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 |