diff options
author | rbuj <[email protected]> | 2019-10-01 22:37:49 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-10-09 09:11:58 +0200 |
commit | ea214684aeee170dc2a95cb1df751ef4bd0b82c4 (patch) | |
tree | b2f4ce62ffe36789969e7af0d921b5a5103a19c1 /examples/Makefile.am | |
parent | 5f8bf42dc4b5bae6627bafb850e90fc8d25e8f5f (diff) | |
download | libmatemixer-ea214684aeee170dc2a95cb1df751ef4bd0b82c4.tar.bz2 libmatemixer-ea214684aeee170dc2a95cb1df751ef4bd0b82c4.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
It updates configure summary.
Diffstat (limited to 'examples/Makefile.am')
-rw-r--r-- | examples/Makefile.am | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am index 5e6d7ac..1eea367 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,11 +1,18 @@ -AM_CPPFLAGS = \ - -I$(top_srcdir) \ - $(GLIB_CFLAGS) +NULL = + +AM_CPPFLAGS = \ + -I$(top_srcdir) \ + $(GLIB_CFLAGS) \ + $(NULL) noinst_PROGRAMS = matemixer-monitor matemixer_monitor_SOURCES = monitor.c +matemixer_monitor_CFLAGS = \ + $(WARN_CFLAGS) \ + $(NULL) + matemixer_monitor_LDADD = \ $(GLIB_LIBS) \ $(top_builddir)/libmatemixer/libmatemixer.la |