intel/compiler: Add and use helpers for working with KSP indices
[mesa.git] / src / intel / Makefile.tools.am
index dc073e8daa37f470c5c40b5591c421fdeaa12610..b00cc8cc2cb346dbfe3695142a6b311b92f9dc02 100644 (file)
 # 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/disasm.c \
-       tools/gen_disasm.h
+       tools/intel_aub.h
 
 tools_aubinator_CFLAGS = \
        $(AM_CFLAGS) \
-       $(EXPAT_CFLAGS) \
-       $(ZLIB_CFLAGS) \
-       $(INTEL_CFLAGS)
+       $(ZLIB_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) \
        $(DLOPEN_LIBS) \
-       $(EXPAT_LIBS) \
        $(ZLIB_LIBS) \
        -lm
+
+
+tools_aubinator_error_decode_SOURCES = \
+       tools/aubinator_error_decode.c
+
+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)
+
+tools_aubinator_error_decode_CFLAGS = \
+       $(AM_CFLAGS) \
+       $(ZLIB_CFLAGS)