laforge
/
openbts-osmo
Archived
1
0
Fork 0

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>
This commit is contained in:
Alexander Huemer 2011-05-23 19:04:50 +02:00 committed by Sylvain Munaut
parent d15a9730fe
commit a2d4ed5c71
1 changed files with 3 additions and 0 deletions

View File

@ -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