Make.rules: Make all submake invocations silent for consistency.
This commit is contained in:
parent
2f356c785e
commit
5012c17a05
|
@ -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:%=%/__depend__)
|
|||
# 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__) $(EXTRASUBDIRS:%=%/__clean__)
|
|||
# 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__)
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue