From c3b42da8d9415d20fa18fa37aa75a965935e3038 Mon Sep 17 00:00:00 2001 From: Nils Maier Date: Sat, 24 Aug 2013 19:38:56 +0200 Subject: [PATCH] AM_SILENT_RULES([yes]) with backwards-compatiblity Supported since automake-1.11. There is no point in having the very verbose compile stuff running about, which cannot even silenced properly with `make -s` by default. Otherwise, `make V=1` or `--disable-silent-rules` are your friends --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index 14a7b8a0..8317f293 100644 --- a/configure.ac +++ b/configure.ac @@ -8,6 +8,8 @@ AC_CANONICAL_HOST AC_CANONICAL_TARGET AM_INIT_AUTOMAKE() +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + AC_USE_SYSTEM_EXTENSIONS LT_PREREQ([2.2.6])