pespin submitted this change.
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(-)
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
To view, visit change 39279. To unsubscribe, or for help writing mail filters, visit settings.