configure.ac: use AM_SILENT_RULES if available
M_SILENT_RULES improves readability of the messages emitted by make, compiler warnings are easier to spot. Available since automake-1.11, ignored on earlier versions. Traditional verbose output can be forced by "./configure --disable-silent-rules" or "make V=1" Written-by: Alexander Huemer <alexander.huemer@xx.vu> Signed-off-by: Sylvain Munaut <tnt@246tNt.com>master
parent
d15a9730fe
commit
a2d4ed5c71
|
@ -30,6 +30,9 @@ AC_CANONICAL_TARGET
|
|||
|
||||
AM_INIT_AUTOMAKE
|
||||
|
||||
dnl Linux kernel KBuild style compile messages
|
||||
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
||||
|
||||
AM_PROG_AS
|
||||
AC_PROG_CXX
|
||||
AC_PROG_LN_S
|
||||
|
|
Reference in New Issue