pespin has submitted this change. (
https://gerrit.osmocom.org/c/libosmocore/+/39938?usp=email )
Change subject: cosmetic: vty/Makefile.am: Split items one per line
......................................................................
cosmetic: vty/Makefile.am: Split items one per line
Change-Id: I71581f11bdcb4b186a271fc42d5745889c32f4c9
---
M src/vty/Makefile.am
1 file changed, 30 insertions(+), 7 deletions(-)
Approvals:
osmith: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/src/vty/Makefile.am b/src/vty/Makefile.am
index 8818d89..360fddd 100644
--- a/src/vty/Makefile.am
+++ b/src/vty/Makefile.am
@@ -3,16 +3,39 @@
# before making any modifications:
https://www.gnu.org/software/libtool/manual/html_node/Versioning.html
LIBVERSION=13:2:0
-AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_builddir)
-AM_CFLAGS = -Wall $(TALLOC_CFLAGS) $(PTHREAD_CFLAGS)
+AM_CPPFLAGS = \
+ -I$(top_srcdir)/include \
+ -I$(top_builddir)/include \
+ -I$(top_builddir) \
+ $(NULL)
+AM_CFLAGS = \
+ -Wall \
+ $(TALLOC_CFLAGS) \
+ $(PTHREAD_CFLAGS) \
+ $(NULL)
if ENABLE_VTY
lib_LTLIBRARIES = libosmovty.la
-libosmovty_la_SOURCES = buffer.c command.c vty.c vector.c utils.c \
- telnet_interface.c logging_vty.c stats_vty.c \
- fsm_vty.c talloc_ctx_vty.c \
- cpu_sched_vty.c tdef_vty.c
+libosmovty_la_SOURCES = \
+ buffer.c \
+ command.c \
+ cpu_sched_vty.c \
+ fsm_vty.c \
+ logging_vty.c \
+ stats_vty.c \
+ talloc_ctx_vty.c \
+ tdef_vty.c \
+ telnet_interface.c \
+ utils.c \
+ vector.c \
+ vty.c \
+ $(NULL)
+
libosmovty_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined
-libosmovty_la_LIBADD = $(top_builddir)/src/core/libosmocore.la $(TALLOC_LIBS)
$(PTHREAD_LIBS)
+libosmovty_la_LIBADD = \
+ $(top_builddir)/src/core/libosmocore.la \
+ $(TALLOC_LIBS) \
+ $(PTHREAD_LIBS) \
+ $(NULL)
endif
--
To view, visit
https://gerrit.osmocom.org/c/libosmocore/+/39938?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I71581f11bdcb4b186a271fc42d5745889c32f4c9
Gerrit-Change-Number: 39938
Gerrit-PatchSet: 3
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>