Enable SILENT_RULES if available. Starting from automake 1.11 a kbuild like compile output can be used. Makes spotting warnings easier.
Signed-off-by: Stefan Schmidt <[email protected]> --- configure.ac | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/configure.ac b/configure.ac index 0d9ae21..cd119f1 100644 --- a/configure.ac +++ b/configure.ac @@ -16,6 +16,9 @@ AM_MAINTAINER_MODE([enable]) AC_CONFIG_SRCDIR([src/serial.c]) AC_CONFIG_HEADER([config.h]) +# Test for new silent rules and enable only if they are available +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + AC_ARG_WITH(zbtestdir, [AC_HELP_STRING([--with-zbtestdir], [directory where all test programs will be installed])], [zbtestdir=$withval], -- 1.7.0.2 ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Linux-zigbee-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/linux-zigbee-devel
