diff options
author | Yaakov Selkowitz <yselkowitz@users.sourceforge.net> | 2010-03-17 13:40:41 -0500 |
---|---|---|
committer | Yaakov Selkowitz <yselkowitz@users.sourceforge.net> | 2010-03-22 00:45:55 -0500 |
commit | 0820a6e2fb005b5f856dda25e1644f34fc994129 (patch) | |
tree | 126ea859893d927a312da9b04e81a8e3cb46e392 /hw/xnest | |
parent | 9be4157391edf0c5fc4ee36adfb1eb1c3bdb8e3b (diff) |
Fix .man.N targets for AM_SILENT_RULES
Add $(AM_V_GEN) for sed-based rules so they appear as expected with
automake silent rules, and $(AM_V_at) to completely hide cp/ln/rm
commands which are not prone to fail.
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/xnest')
-rw-r--r-- | hw/xnest/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xnest/Makefile.am b/hw/xnest/Makefile.am index 877ab8b28..666a0f0e6 100644 --- a/hw/xnest/Makefile.am +++ b/hw/xnest/Makefile.am @@ -85,8 +85,8 @@ CLEANFILES = $(appman_PRE) $(appman_DATA) SUFFIXES += .$(APP_MAN_SUFFIX) .man .man.$(APP_MAN_SUFFIX): - -rm -f $@ - $(LN_S) $< $@ + -$(AM_V_at)rm -f $@ + $(AM_V_at)$(LN_S) $< $@ relink: $(AM_V_at)rm -f Xnest$(EXEEXT) && $(MAKE) Xnest$(EXEEXT) |