diff options
author | Martin Szulecki | 2020-06-09 18:19:07 +0200 |
---|---|---|
committer | Martin Szulecki | 2020-06-09 18:19:07 +0200 |
commit | c14849987d893999c03f165b49257e108d07bad3 (patch) | |
tree | e9e8769873b113494958b669700ce107b132a644 /libcnary | |
parent | 65a7ffbfb124c2a0acf94b5e88911d6bf95d6009 (diff) | |
download | libplist-c14849987d893999c03f165b49257e108d07bad3.tar.gz libplist-c14849987d893999c03f165b49257e108d07bad3.tar.bz2 |
Unfold automake variables into multiple lines for maintainability
Diffstat (limited to 'libcnary')
-rw-r--r-- | libcnary/Makefile.am | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/libcnary/Makefile.am b/libcnary/Makefile.am index e2187ec..f5c7bc9 100644 --- a/libcnary/Makefile.am +++ b/libcnary/Makefile.am @@ -1,12 +1,15 @@ -AM_CFLAGS = $(GLOBAL_CFLAGS) -I$(top_srcdir)/libcnary/include +AM_CFLAGS = \ + $(GLOBAL_CFLAGS) \ + -I$(top_srcdir)/libcnary/include + AM_LDFLAGS = noinst_LTLIBRARIES = libcnary.la -libcnary_la_LIBADD = +libcnary_la_LIBADD = libcnary_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined libcnary_la_SOURCES = \ - node.c \ - node_list.c \ - include/node.h \ - include/node_list.h \ - include/object.h + node.c \ + node_list.c \ + include/node.h \ + include/node_list.h \ + include/object.h |