falconia has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-netif/+/39279?usp=email )
Change subject: src/Makefile.am cosmetic: make it easier to extend ......................................................................
src/Makefile.am cosmetic: make it easier to extend
To make it easier to add new source files to libosmonetif_la_SOURCES list, make two cosmetic changes to it:
* List stream.c before stream_{cli,srv}.c, matching the order that is used in other similar instances; * Use $(NULL) construct so that every source-naming line ends with a backslash.
Change-Id: I98cf6d592fb66d5f22d486358ccdab06306ae3b0 --- M src/Makefile.am 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-netif refs/changes/79/39279/1
diff --git a/src/Makefile.am b/src/Makefile.am index bd3f272..e3634be 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -23,9 +23,10 @@ prim.c \ rs232.c \ rtp.c \ + stream.c \ stream_cli.c \ stream_srv.c \ - stream.c + $(NULL)
if ENABLE_LIBSCTP libosmonetif_la_SOURCES += sctp.c