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.
This commit is contained in:
10
configure.ac
10
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.
|
||||
|
||||
Reference in New Issue
Block a user