From: Thomas Haller Date: Wed, 24 Sep 2014 05:49:33 +0000 (+0200) Subject: build/trivial: prettify makefiles by wrapping long lines X-Git-Tag: libnl3_2_26rc1~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e3f316081588cd7c25a54c1321571e29cfd806c;p=thirdparty%2Flibnl.git build/trivial: prettify makefiles by wrapping long lines Signed-off-by: Thomas Haller Acked-by: Thomas Graf --- diff --git a/src/Makefile.am b/src/Makefile.am index f8ac4ca..ea4bf45 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,7 +2,12 @@ SUBDIRS = lib -AM_CPPFLAGS = -I${top_srcdir}/include -I${top_builddir}/include -D_GNU_SOURCE -DSYSCONFDIR=\"$(sysconfdir)/libnl\" +AM_CPPFLAGS = \ + -I${top_srcdir}/include \ + -I${top_builddir}/include \ + -D_GNU_SOURCE \ + -DSYSCONFDIR=\"$(sysconfdir)/libnl\" + AM_CFLAGS = -Wall LDADD = \ diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am index 5161115..4b9b4a9 100644 --- a/src/lib/Makefile.am +++ b/src/lib/Makefile.am @@ -1,6 +1,13 @@ # -*- Makefile -*- -AM_CPPFLAGS = -I${top_srcdir}/include -I${top_builddir}/include -D_GNU_SOURCE -DPKGLIBDIR=\"$(pkglibdir)\" -DSYSCONFDIR=\"$(sysconfdir)\" -rdynamic +AM_CPPFLAGS = \ + -I${top_srcdir}/include \ + -I${top_builddir}/include \ + -D_GNU_SOURCE \ + -DPKGLIBDIR=\"$(pkglibdir)\" \ + -DSYSCONFDIR=\"$(sysconfdir)\" \ + -rdynamic + AM_CFLAGS = -Wall AM_LDFLAGS = \ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) diff --git a/tests/Makefile.am b/tests/Makefile.am index 0abf728..c016bb8 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -5,7 +5,12 @@ EXTRA_DIST = \ if ENABLE_UNIT_TESTS -AM_CPPFLAGS = -Wall -I${top_srcdir}/include -I${top_builddir}/include -D_GNU_SOURCE -DSYSCONFDIR=\"$(sysconfdir)/libnl\" +AM_CPPFLAGS = \ + -Wall \ + -I${top_srcdir}/include \ + -I${top_builddir}/include \ + -D_GNU_SOURCE \ + -DSYSCONFDIR=\"$(sysconfdir)/libnl\" LDADD = \ ${top_builddir}/lib/libnl-3.la \