Move C compiler warning (-W) flags from CFLAGS to AM_CFLAGS.
authorBen Pfaff <blp@nicira.com>
Thu, 19 Nov 2009 21:25:42 +0000 (13:25 -0800)
committerBen Pfaff <blp@nicira.com>
Mon, 23 Nov 2009 19:34:54 +0000 (11:34 -0800)
commitd161c099279e9ab564636c72423268e6da69f795
tree5bbbafe4b00a3461e8084f03324b98bf0600f596
parent83f6c0502c67ea117c73d3bbb91f9b9e0e81bf87
Move C compiler warning (-W) flags from CFLAGS to AM_CFLAGS.

C compiler warning options added by the "configure" script have until
now been put into CFLAGS.  However that option is supposed to be reserved
for the user under Automake rules, so move them to AM_CFLAGS.

Besides increased adherence to Automake rules, this is useful because
AM_CFLAGS can be overridden on a per-target (e.g. program or library)
basis, whereas CFLAGS cannot.  In turn, building the sFlow library (which
will be added in an upcoming commit) requires overriding the compiler
flags to avoid some warning messages.  (By modifying the warning flags, we
avoid the need to modify the sFlow library in any way.)
Makefile.am
acinclude.m4