From: Thomas Haller Date: Mon, 27 Feb 2017 11:13:13 +0000 (+0100) Subject: build: move compiler warning flags to separate autoconf variable X-Git-Tag: libnl3_3_0rc1~12^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=812e16a77f66acf6b3f8cac2b8334f3b7a754280;p=libnl build: move compiler warning flags to separate autoconf variable --- diff --git a/Makefile.am b/Makefile.am index 81da1fc..76d51e1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -26,6 +26,9 @@ pkgconfig_DATA = \ libnl-xfrm-3.0.pc \ libnl-idiag-3.0.pc +warn_cppflags = \ + -Wall + ############################################################################### libnlincludedir = $(includedir)/libnl@MAJ_VERSION@ @@ -283,7 +286,7 @@ EXTRA_DIST += \ ############################################################################### lib_cppflags = \ - -Wall \ + $(warn_cppflags) \ -Wmissing-prototypes \ -D_GNU_SOURCE \ -DSYSCONFDIR=\"$(sysconfdir)/libnl\" \ @@ -564,7 +567,7 @@ src_lib_libnl_cli_3_la_SOURCES = \ EXTRA_src_lib_libnl_cli_3_la_DEPENDENCIES = \ libnl-cli-3.sym src_lib_libnl_cli_3_la_CPPFLAGS = \ - -Wall \ + $(warn_cppflags) \ -D_GNU_SOURCE \ -DPKGLIBDIR=\"$(pkglibdir)\" \ -DSYSCONFDIR=\"$(sysconfdir)\" \ @@ -584,7 +587,7 @@ src_lib_libnl_cli_3_la_LIBADD = \ ############################################################################### src_cppflags = \ - -Wall \ + $(warn_cppflags) \ -D_GNU_SOURCE \ -DSYSCONFDIR=\"$(sysconfdir)/libnl\" \ -I$(srcdir)/include/linux-private \ @@ -757,7 +760,7 @@ src_nl_util_addr_LDADD = $(src_ldadd) ############################################################################### tests_cppflags = \ - -Wall \ + $(warn_cppflags) \ -D_GNU_SOURCE \ -DSYSCONFDIR=\"$(sysconfdir)/libnl\" \ -I$(srcdir)/include/linux-private \