diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-02-11 10:08:06 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2010-02-11 10:08:06 -0500 |
commit | 8180d8ea42cfdda9ed3828fb28d1a6cd24d951db (patch) | |
tree | e48d4d701dbf6d9e27ba0a230a8e72eb50367963 /Makefile.am | |
parent | 04d8b9bfcd40eee452ba080b654dac9281251115 (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 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 46a0d1d..6a982ac 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,7 +21,7 @@ bin_PROGRAMS = xcalc -AM_CFLAGS = $(XCALC_CFLAGS) +AM_CFLAGS = $(XCALC_CFLAGS) $(CWARNFLAGS) xcalc_LDADD = $(XCALC_LIBS) -lm xcalc_SOURCES = \ |