diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-02-16 10:37:21 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2010-02-16 12:24:49 -0500 |
commit | d6b098f463d185e5ed1b45013bd2600c124b7a3a (patch) | |
tree | bb889a9fbca5b235bcb9463cb73aa0337b224a21 /src/Makefile.am | |
parent | a125ac058be77d81c1806420a7fd1df3b19a6bf4 (diff) |
config: move CWARNFLAGS from configure.ac to Makefile.am
Compiler warning flags should be explicitly set in the makefile
rather than being merged with other packages compiler flags.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index a2f3db0..1091ece 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -6,10 +6,11 @@ libXtst_la_SOURCES = \ libXtst_la_LIBADD = @XTST_LIBS@ -AM_CFLAGS=\ - -I$(top_srcdir)/include \ - -I$(top_srcdir)/include/X11/extensions\ - @XTST_CFLAGS@ +AM_CFLAGS = \ + -I$(top_srcdir)/include \ + -I$(top_srcdir)/include/X11/extensions \ + $(XTST_CFLAGS) \ + $(CWARNFLAGS) libXtst_la_LDFLAGS = -version-number 6:1:0 -no-undefined |