fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-sigtran/+/41378?usp=email )
Change subject: fixup! Add TCAP based loadsharing/routing ......................................................................
fixup! Add TCAP based loadsharing/routing
Change-Id: I00230f8d4e301107ecad21de430c8c14450f80f9 --- M tests/tcap/Makefile.am 1 file changed, 17 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-sigtran refs/changes/78/41378/1
diff --git a/tests/tcap/Makefile.am b/tests/tcap/Makefile.am index d833aea..692f594 100644 --- a/tests/tcap/Makefile.am +++ b/tests/tcap/Makefile.am @@ -1,9 +1,23 @@ if BUILD_WITH_TCAP_LOADSHARING -AM_CFLAGS = $(all_includes) -I$(top_srcdir)/include -I$(top_srcdir)/src -Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOASN1TCAP_CFLAGS) +AM_CFLAGS = \ + -Wall \ + $(all_includes) \ + -I$(top_srcdir)/include \ + -I$(top_srcdir)/src \ + $(LIBOSMOCORE_CFLAGS) \ + $(LIBOSMONETIF_CFLAGS) \ + $(LIBOSMOASN1TCAP_CFLAGS) \ + $(NULL) AM_LDFLAGS = -no-install
-LDADD = $(top_builddir)/src/libosmo-sigtran.la \ - $(LIBOSMOCORE_LIBS) $(LIBOSMOVTY_LIBS) $(LIBOSMONETIF_LIBS) $(LIBOSMOASN1TCAP_LIBS) $(LIBSCTP_LIBS) +LDADD = \ + $(top_builddir)/src/libosmo-sigtran.la \ + $(LIBOSMOCORE_LIBS) \ + $(LIBOSMOVTY_LIBS) \ + $(LIBOSMONETIF_LIBS) \ + $(LIBOSMOASN1TCAP_LIBS) \ + $(LIBSCTP_LIBS) \ + $(NULL)
check_PROGRAMS = \ tcap_parse_test \