diff options
author | rbuj <[email protected]> | 2019-09-26 19:59:26 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-10-01 14:14:44 +0200 |
commit | 54f10719ae236f67db8505a0217c190bac32c13b (patch) | |
tree | 16c7f25f01ce1238b97ab9014943a035b1bbeb69 /src/Makefile.am | |
parent | 744f9ff68b10b168bcceb20e550ac0b8239e7fea (diff) | |
download | marco-54f10719ae236f67db8505a0217c190bac32c13b.tar.bz2 marco-54f10719ae236f67db8505a0217c190bac32c13b.tar.xz |
Use WARN_CFLAGS which are only set with --enable-compiler-warnings
It removes --enable-more-warnings, since it is recommended to use
--enable-compile-warnings=maximum
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 0bdba31c..cb7c0043 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -11,7 +11,8 @@ AM_CPPFLAGS = \ -DMARCO_DATADIR=\"$(datadir)\" \ -DG_LOG_DOMAIN=\"marco\" \ -DSN_API_NOT_YET_FROZEN=1 \ - @MARCO_CFLAGS@ + @MARCO_CFLAGS@ \ + $(WARN_CFLAGS) marco_SOURCES= \ core/main.c \ |