From 3d78ab39a7912736cc600fd9085c0889af2db815 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Fri, 27 May 2011 20:07:18 +0200 Subject: [PATCH] Enable silent build rules by default if available. Automake's silent rules report commands as (e.g.,) CC facetopology.lo which is a lot easier to read than the more verbose default output. Enable this report mode, but only if we're being processed by an Automake implementation that offers this particular capability. --- configure.ac | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/configure.ac b/configure.ac index 5455f462..5ebdac0f 100644 --- a/configure.ac +++ b/configure.ac @@ -9,6 +9,16 @@ AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([foreign]) +# Use "silent" rules by default if available in the Automake being used to +# process this setup. See, e.g., +# +# http://www.flameeyes.eu/autotools-mythbuster/automake/silent.html +# +# for details, particularly concerning the backwards compatibility. +# +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + + LT_INIT # Checks for programs.