pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-cbc/+/28297 )
Change subject: src/Makefile: Reformat files one per line ......................................................................
src/Makefile: Reformat files one per line
Change-Id: I666d6cd1461117397e05ac573c834a82abb2807d --- M src/Makefile.am 1 file changed, 21 insertions(+), 5 deletions(-)
Approvals: Jenkins Builder: Verified fixeria: Looks good to me, approved
diff --git a/src/Makefile.am b/src/Makefile.am index edac0c3..6f82a54 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,14 +5,30 @@ $(COVERAGE_CFLAGS) AM_LDFLAGS=$(COVERAGE_LDFLAGS)
-EXTRA_DIST = cbc_data.h cbsp_server.h charset.h internal.h rest_it_op.h +EXTRA_DIST = \ + cbc_data.h \ + cbsp_server.h \ + charset.h \ + internal.h \ + rest_it_op.h \ + $(NULL)
bin_PROGRAMS = osmo-cbc
-osmo_cbc_SOURCES = cbc_main.c cbc_data.c cbc_vty.c cbsp_server.c cbsp_server_fsm.c \ - rest_api.c charset.c message_handling.c rest_it_op.c \ - smscb_peer_fsm.c smscb_message_fsm.c +osmo_cbc_SOURCES = \ + cbc_main.c \ + cbc_data.c \ + cbc_vty.c \ + cbsp_server.c \ + cbsp_server_fsm.c \ + rest_api.c \ + charset.c \ + message_handling.c \ + rest_it_op.c \ + smscb_peer_fsm.c \ + smscb_message_fsm.c \ + $(NULL) + osmo_cbc_LDADD = $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(LIBOSMOVTY_LIBS) \ $(LIBOSMONETIF_LIBS) \ $(ULFIUS_LIBS) $(JANSSON_LIBS) $(ORCANIA_LIBS) -