src/Makefile: Reformat files one per line

Change-Id: I666d6cd1461117397e05ac573c834a82abb2807d
This commit is contained in:
Pau Espin 2022-06-16 16:10:14 +02:00
parent 2029fbaf6a
commit fb6f123daf
1 changed files with 21 additions and 5 deletions

View File

@ -5,14 +5,30 @@ AM_CFLAGS=-Wall -g $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS) $(LIBOSMOVTY_CFLAG
$(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)