aboutsummaryrefslogtreecommitdiff
path: root/make/install-rules.gmk
diff options
context:
space:
mode:
authorohair <none@none>2009-09-03 17:44:28 -0700
committerohair <none@none>2009-09-03 17:44:28 -0700
commit78fe9a301c1e1f325e7371b0c81fe94bef8e7f00 (patch)
tree6bab88aca76457f2d4c7b6e0ff683ea6fca047ef /make/install-rules.gmk
parent3a895a11c7691eda8b863a8b729379be5172f9bd (diff)
6855174: Improve log output when builds transition from one workspace to another
Reviewed-by: jjg
Diffstat (limited to 'make/install-rules.gmk')
-rw-r--r--make/install-rules.gmk10
1 files changed, 10 insertions, 0 deletions
diff --git a/make/install-rules.gmk b/make/install-rules.gmk
index dc85f05..05ba70b 100644
--- a/make/install-rules.gmk
+++ b/make/install-rules.gmk
@@ -57,38 +57,48 @@ install: install-build
install-build:
ifeq ($(BUILD_INSTALL), true)
+ @$(call MakeStart, install, $(INSTALL_BUILD_TARGETS))
($(CD) $(INSTALL_TOPDIR)/make && \
$(MAKE) $(INSTALL_BUILD_TARGETS) $(INSTALL_BUILD_ARGUMENTS))
+ @$(call MakeFinish, install, $(INSTALL_BUILD_TARGETS))
endif
update-patcher:
ifeq ($(BUILD_INSTALL), true)
if [ -r $(INSTALL_TOPDIR)/make/update/Makefile ]; then \
+ $(call MakeStart, install update, all); \
( $(CD) $(INSTALL_TOPDIR)/make/update && \
$(MAKE) all $(INSTALL_BUILD_ARGUMENTS) ); \
+ $(call MakeFinish, install, all); \
fi
endif
update-patchgen:
ifeq ($(BUILD_INSTALL), true)
if [ -r $(INSTALL_TOPDIR)/make/update/Makefile ]; then \
+ $(call MakeStart, install update, patchgen); \
( $(CD) $(INSTALL_TOPDIR)/make/update && \
$(MAKE) patchgen $(INSTALL_BUILD_ARGUMENTS) ); \
+ $(call MakeFinish, install, patchgen); \
fi
endif
installer:
ifeq ($(BUILD_INSTALL), true)
if [ -r $(INSTALL_TOPDIR)/make/installer/Makefile ]; then \
+ $(call MakeStart, install installer, all); \
( $(CD) $(INSTALL_TOPDIR)/make/installer && \
$(MAKE) all $(INSTALL_BUILD_ARGUMENTS) ); \
+ $(call MakeFinish, install, all); \
fi
endif
install-clobber:
ifeq ($(BUILD_INSTALL), true)
+ @$(call MakeStart, install, clobber)
($(CD) $(INSTALL_TOPDIR)/make && \
$(MAKE) clobber $(INSTALL_BUILD_ARGUMENTS))
+ @$(call MakeFinish, install, clobber)
endif
install-sanity::