From e6ec71685511864bbd82cf6dd7c57597195eb39d Mon Sep 17 00:00:00 2001 From: Akira TAGOH Date: Feb 28 2012 10:33:34 +0000 Subject: Enable the silent build rules by default --- diff --git a/configure.ac b/configure.ac index 94c4bd1..6c4d105 100644 --- a/configure.ac +++ b/configure.ac @@ -4,6 +4,11 @@ AC_INIT([im-chooser], 1.5.2, [https://bugzilla.redhat.com/enter_bug.cgi?product= . ./requires AM_INIT_AUTOMAKE($PACKAGE_NAME, $PACKAGE_VERSION) +dnl silent build rules, requires at least automake-1.11. +dnl by either passing --enable-silent-rules to configure or +dnl V=0 to make. +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + AM_MAINTAINER_MODE AM_CONFIG_HEADER([config.h]) diff --git a/libimchooseui/Makefile.am b/libimchooseui/Makefile.am index be58f90..5619d1e 100644 --- a/libimchooseui/Makefile.am +++ b/libimchooseui/Makefile.am @@ -109,12 +109,12 @@ ui_DATA = \ imchooseui-marshal.h: stamp-marshal.h @true stamp-marshal.h: @REBUILD@ marshal.list Makefile - $(GLIB_GENMARSHAL) --prefix=imchoose_ui_marshal $(srcdir)/marshal.list --header > xgen-ich \ + $(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=imchoose_ui_marshal $(srcdir)/marshal.list --header > xgen-ich \ && (cmp -s xgen-ich imchooseui-marshal.h || cp xgen-ich imchooseui-marshal.h) \ && rm -f xgen-ich \ && echo timestamp > $(@F) imchooseui-marshal.c: @REBUILD@ imchooseui-marshal.h Makefile - (echo "#include \"imchooseui-marshal.h\""; \ + $(AM_V_GEN) (echo "#include \"imchooseui-marshal.h\""; \ $(GLIB_GENMARSHAL) --prefix=imchoose_ui_marshal $(srcdir)/marshal.list --body) > xgen-icc \ && cp xgen-icc imchooseui-marshal.c \ && rm -f xgen-icc