Alexandre Julliard : Make.rules: Make all submake invocations silent for consistency.
Module: wine Branch: refs/heads/master Commit: 5012c17a053bb533fe60952b0528dd25f71ce8d8 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=5012c17a053bb533fe60952b... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Mon Aug 7 13:54:09 2006 +0200 Make.rules: Make all submake invocations silent for consistency. --- Make.rules.in | 14 +++++++------- Makefile.in | 2 +- documentation/Makefile.in | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Make.rules.in b/Make.rules.in index 57e6ba7..f9aa27f 100644 --- a/Make.rules.in +++ b/Make.rules.in @@ -200,7 +200,7 @@ winapi_check:: dummy # Rules for dependencies $(SUBDIRS:%=%/__depend__): dummy - cd `dirname $@` && $(MAKE) depend + @cd `dirname $@` && $(MAKE) depend depend: $(IDL_SRCS:.idl=.h) $(SUBDIRS:%=%/__depend__) $(MAKEDEP) -C$(SRCDIR) -S$(TOPSRCDIR) -T$(TOPOBJDIR) $(EXTRAINCL) $(C_SRCS) $(C_SRCS16) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(IDL_SRCS) $(EXTRA_SRCS) @@ -210,10 +210,10 @@ depend: $(IDL_SRCS:.idl=.h) $(SUBDIRS:%= # Rules for cleaning $(SUBDIRS:%=%/__clean__): dummy - cd `dirname $@` && $(MAKE) clean + @cd `dirname $@` && $(MAKE) clean $(SUBDIRS:%=%/__testclean__): dummy - cd `dirname $@` && $(MAKE) testclean + @cd `dirname $@` && $(MAKE) testclean $(EXTRASUBDIRS:%=%/__clean__): dummy -cd `dirname $@` && $(RM) $(CLEAN_FILES) @@ -228,16 +228,16 @@ clean:: $(SUBDIRS:%=%/__clean__) $(EXTRA # Rules for installing $(SUBDIRS:%=%/__install__): dummy - cd `dirname $@` && $(MAKE) install + @cd `dirname $@` && $(MAKE) install $(SUBDIRS:%=%/__install-lib__): dummy - cd `dirname $@` && $(MAKE) install-lib + @cd `dirname $@` && $(MAKE) install-lib $(SUBDIRS:%=%/__install-dev__): dummy - cd `dirname $@` && $(MAKE) install-dev + @cd `dirname $@` && $(MAKE) install-dev $(SUBDIRS:%=%/__uninstall__): dummy - cd `dirname $@` && $(MAKE) uninstall + @cd `dirname $@` && $(MAKE) uninstall install:: $(INSTALLSUBDIRS:%=%/__install__) diff --git a/Makefile.in b/Makefile.in index 02fd676..d49d1fe 100644 --- a/Makefile.in +++ b/Makefile.in @@ -127,7 +127,7 @@ tags ctags: find $(TOPSRCDIR)/ -name '*.[ch]' -print | ctags --c-types=+px -L - manpages htmlpages sgmlpages: - cd documentation && $(MAKE) $@ + @cd documentation && $(MAKE) $@ clean:: $(RM) wine diff --git a/documentation/Makefile.in b/documentation/Makefile.in index 1e7ec7b..52a5c17 100644 --- a/documentation/Makefile.in +++ b/documentation/Makefile.in @@ -8,15 +8,15 @@ MODULE = none manpages: $(MKINSTALLDIRS) man$(api_manext) - cd $(DLLDIR) && $(MAKE) man + @cd $(DLLDIR) && $(MAKE) man htmlpages: $(MKINSTALLDIRS) html - cd $(DLLDIR) && $(MAKE) doc-html + @cd $(DLLDIR) && $(MAKE) doc-html sgmlpages: $(MKINSTALLDIRS) api-guide - cd $(DLLDIR) && $(MAKE) doc-sgml + @cd $(DLLDIR) && $(MAKE) doc-sgml .PHONY: manpages htmlpages sgmlpages
participants (1)
-
Alexandre Julliard