diff options
Diffstat (limited to 'src/intel/Makefile.tools.am')
-rw-r--r-- | src/intel/Makefile.tools.am | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/src/intel/Makefile.tools.am b/src/intel/Makefile.tools.am index dc073e8daa3..576beea4f2a 100644 --- a/src/intel/Makefile.tools.am +++ b/src/intel/Makefile.tools.am @@ -19,7 +19,9 @@ # 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 \ @@ -42,3 +44,18 @@ tools_aubinator_LDADD = \ $(EXPAT_LIBS) \ $(ZLIB_LIBS) \ -lm + + +tools_aubinator_error_decode_SOURCES = \ + tools/aubinator_error_decode.c + +tools_aubinator_error_decode_LDADD = \ + common/libintel_common.la \ + $(top_builddir)/src/util/libmesautil.la \ + $(EXPAT_LIBS) \ + $(ZLIB_LIBS) + +tools_aubinator_error_decode_CFLAGS = \ + $(AM_CFLAGS) \ + $(EXPAT_CFLAGS) \ + $(ZLIB_CFLAGS) |