aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2023-09-29 16:30:47 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2023-09-29 16:34:11 +0200
commit785d160da83683b1c07249d398f720bbbb0cbf4d (patch)
tree2d049e7441229c19d0dbac9b1d242fd6489b5ce4
parent743deba334339876a151bb7c1bbbad1f49df5c9f (diff)
cosmetic: src/Makefile: reformat to one item per line
-rw-r--r--src/Makefile.am53
1 files changed, 43 insertions, 10 deletions
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_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include -I$(top_builddir)
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 @@ lib_LTLIBRARIES = libosmo-sigtran.la
# 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)