pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-sccp/+/34586?usp=email )
Change subject: cosmetic: src/Makefile: reformat to one item per line ......................................................................
cosmetic: src/Makefile: reformat to one item per line
Change-Id: I9efb883d2a56723300a66b7e13c7aa079f2e4600 --- M src/Makefile.am 1 file changed, 52 insertions(+), 10 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-sccp refs/changes/86/34586/1
diff --git a/src/Makefile.am b/src/Makefile.am index f20e193..3c0bdb4 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,7 +2,13 @@ AM_CFLAGS=-Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOVTY_CFLAGS) \ $(LIBOSMONETIF_CFLAGS)
-noinst_HEADERS = sccp_internal.h ss7_internal.h xua_asp_fsm.h xua_as_fsm.h xua_internal.h +noinst_HEADERS = \ + sccp_internal.h \ + ss7_internal.h \ + xua_asp_fsm.h \ + xua_as_fsm.h \ + xua_internal.h \ + $(NULL)
# Legacy static libs
@@ -27,13 +33,40 @@ # documentation before making any modification LIBVERSION=9:0:0
-libosmo_sigtran_la_SOURCES = sccp_sap.c sua.c m3ua.c xua_msg.c sccp_helpers.c \ - sccp2sua.c sccp_scrc.c sccp_sclc.c sccp_scoc.c \ - sccp_user.c sccp_types.c sccp_lbcs.c sccp_scmg.c \ - xua_rkm.c xua_shared.c xua_default_lm_fsm.c \ - osmo_ss7.c osmo_ss7_asp.c osmo_ss7_hmrt.c osmo_ss7_xua_srv.c \ - xua_asp_fsm.c xua_as_fsm.c \ - xua_snm.c osmo_ss7_vty.c sccp_vty.c ipa.c +libosmo_sigtran_la_SOURCES = \ + ipa.c \ + m3ua.c \ + osmo_ss7.c \ + osmo_ss7_asp.c \ + osmo_ss7_hmrt.c \ + osmo_ss7_vty.c \ + osmo_ss7_xua_srv.c \ + sccp2sua.c \ + sccp_helpers.c \ + sccp_lbcs.c \ + sccp_sap.c \ + sccp_sclc.c \ + sccp_scmg.c \ + sccp_scrc.c \ + sccp_scoc.c \ + sccp_types.c \ + sccp_user.c \ + sccp_vty.c \ + sua.c \ + xua_asp_fsm.c \ + xua_as_fsm.c \ + xua_default_lm_fsm.c \ + xua_msg.c \ + xua_rkm.c \ + xua_shared.c \ + xua_snm.c \ + $(NULL) + libosmo_sigtran_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined -export-symbols-regex '^osmo_' -libosmo_sigtran_la_LIBADD = $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(LIBOSMOVTY_LIBS) \ - $(LIBOSMONETIF_LIBS) $(LIBSCTP_LIBS) +libosmo_sigtran_la_LIBADD = \ + $(LIBOSMONETIF_LIBS) \ + $(LIBOSMOGSM_LIBS) \ + $(LIBOSMOVTY_LIBS) \ + $(LIBOSMOCORE_LIBS) \ + $(LIBSCTP_LIBS) \ + $(NULL)