From 222b5c803e7b8bdb047a75dfc1856b12bf874723 Mon Sep 17 00:00:00 2001 From: Ruben Laguna Date: Fri, 6 Feb 2015 17:52:58 +0100 Subject: [PATCH] Add comments about make silent rules --- configure.ac | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 91bc186..6189976 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,11 @@ AC_PREREQ([2.69]) AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS]) AM_INIT_AUTOMAKE([foreign subdir-objects]) # Does not require NEWS, COPYING, AUTHORS, ChangeLog or README -AM_SILENT_RULES([yes]) # less verbose make output https://autotools.io/automake/silent.html +# silent make https://autotools.io/automake/silent.html +# silent rules enabled by default with 'yes' +# disable silent runles with ./configure --disable-silent-rules +AM_SILENT_RULES([yes]) # less verbose make output +# AM_SILENT_RULES() # use make -s to get silent output AC_CONFIG_SRCDIR([src/main.c]) AC_CONFIG_HEADERS([config.h])