X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fintel%2FMakefile.tools.am;h=11751180e6916f2b49a4d9e2477e930fa25aa127;hb=db37c0be13e64cce70491d6c6c0090a8f1d3d1d6;hp=5838819f255cab9588081b419bd9d7ea7db5b793;hpb=7f9bbcfb7ba990ca42483dd9e985a543d01ea225;p=mesa.git diff --git a/src/intel/Makefile.tools.am b/src/intel/Makefile.tools.am index 5838819f255..11751180e69 100644 --- a/src/intel/Makefile.tools.am +++ b/src/intel/Makefile.tools.am @@ -19,18 +19,20 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. -noinst_PROGRAMS += tools/aubinator +noinst_PROGRAMS += \ + tools/aubinator \ + tools/aubinator_error_decode tools_aubinator_SOURCES = \ tools/aubinator.c \ - tools/decoder.c \ - tools/decoder.h \ tools/disasm.c \ tools/gen_disasm.h tools_aubinator_CFLAGS = \ $(AM_CFLAGS) \ - $(EXPAT_CFLAGS) + $(EXPAT_CFLAGS) \ + $(ZLIB_CFLAGS) \ + $(INTEL_CFLAGS) tools_aubinator_LDADD = \ common/libintel_common.la \ @@ -40,4 +42,24 @@ tools_aubinator_LDADD = \ $(PTHREAD_LIBS) \ $(DLOPEN_LIBS) \ $(EXPAT_LIBS) \ + $(ZLIB_LIBS) \ -lm + + +tools_aubinator_error_decode_SOURCES = \ + tools/aubinator_error_decode.c \ + tools/disasm.c \ + tools/gen_disasm.h + +tools_aubinator_error_decode_LDADD = \ + common/libintel_common.la \ + compiler/libintel_compiler.la \ + $(top_builddir)/src/util/libmesautil.la \ + $(PTHREAD_LIBS) \ + $(EXPAT_LIBS) \ + $(ZLIB_LIBS) + +tools_aubinator_error_decode_CFLAGS = \ + $(AM_CFLAGS) \ + $(EXPAT_CFLAGS) \ + $(ZLIB_CFLAGS)