diff options
author | Yaakov Selkowitz <yselkowitz@users.sourceforge.net> | 2010-03-17 14:56:24 -0500 |
---|---|---|
committer | Yaakov Selkowitz <yselkowitz@users.sourceforge.net> | 2010-03-22 00:45:52 -0500 |
commit | 5e00f464c546debf9164f24c6d648623f7ee5946 (patch) | |
tree | 2ddb1546d5a2e6b559bc5867f3ea89935918038e /hw/xwin/Makefile.am | |
parent | fa7e062962d17862032bc600bfcffd486addb063 (diff) |
Fix relink targets for silent rules
Add $(AM_V_at) to all relink make targets to silence them when automake
silent rules are in use.
Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Reviewed-by: Alan Coopersmith <alan.coopersmith@sun.com>
Reviewed-by: Julien Cristau <jcristau@debian.org>
Diffstat (limited to 'hw/xwin/Makefile.am')
-rw-r--r-- | hw/xwin/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xwin/Makefile.am b/hw/xwin/Makefile.am index 8bf6546e9..41a4515fa 100644 --- a/hw/xwin/Makefile.am +++ b/hw/xwin/Makefile.am @@ -222,4 +222,4 @@ EXTRA_DIST = \ xlaunch/window/wizard.h relink: - rm -f XWin$(EXEEXT) && $(MAKE) XWin$(EXEEXT) + $(AM_V_at)rm -f XWin$(EXEEXT) && $(MAKE) XWin$(EXEEXT) |