Enable automake silent build rules by default.

Support for silent build rules requires at least automake 1.11.
Disable by either passing --disable-silent-rules to configure or
passing V=1 to make.
This commit is contained in:
Jef Driesen 2009-11-01 17:27:24 +00:00
parent 9baaa18664
commit 8d808e99bb
2 changed files with 4 additions and 2 deletions

View File

@ -5,6 +5,8 @@ AC_PROG_CC_C99
AC_LIBTOOL_WIN32_DLL
AC_PROG_LIBTOOL
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
AC_MSG_CHECKING([for native Win32])
case "$host" in
*-*-mingw*)

View File

@ -91,9 +91,9 @@ libdivecomputer_la_DEPENDENCIES = libdivecomputer.exp
libdivecomputer.exp: libdivecomputer.symbols
if IRDA
$(CPP) -P -DSERIAL -DIRDA - < $< | sed -e '/^$$/d' > $@
$(AM_V_GEN) $(CPP) -P -DSERIAL -DIRDA - < $< | sed -e '/^$$/d' > $@
else
$(CPP) -P -DSERIAL - < $< | sed -e '/^$$/d' > $@
$(AM_V_GEN) $(CPP) -P -DSERIAL - < $< | sed -e '/^$$/d' > $@
endif
CLEANFILES = libdivecomputer.exp