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/vfb | |
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/vfb')
-rw-r--r-- | hw/vfb/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vfb/Makefile.am b/hw/vfb/Makefile.am index c6601c232..a183824cb 100644 --- a/hw/vfb/Makefile.am +++ b/hw/vfb/Makefile.am @@ -49,4 +49,4 @@ SUFFIXES += .$(APP_MAN_SUFFIX) .man EXTRA_DIST = Xvfb.man.pre relink: - rm -f Xvfb$(EXEEXT) && $(MAKE) Xvfb$(EXEEXT) + $(AM_V_at)rm -f Xvfb$(EXEEXT) && $(MAKE) Xvfb$(EXEEXT) |