summaryrefslogtreecommitdiffstats
path: root/core/base_rules.mk
diff options
context:
space:
mode:
authorTanguy Pruvot <tanguy.pruvot@gmail.com>2012-01-09 15:42:26 +0100
committerAdnan Begovic <adnan@cyngn.com>2015-10-06 16:11:53 -0700
commit978e50cc263f244e0f364faa5bc459a814683d33 (patch)
tree02f0ce2667def087e1d35cb1e758feb8fcb5b1f6 /core/base_rules.mk
parent299af8aa9d11f8a3d9b294ddc7f182c4bf2cd7d2 (diff)
downloadbuild-978e50cc263f244e0f364faa5bc459a814683d33.zip
build-978e50cc263f244e0f364faa5bc459a814683d33.tar.gz
build-978e50cc263f244e0f364faa5bc459a814683d33.tar.bz2
build in colors: Install outputs in blue/yellow [basic ics version]
"target prefix:" in yellow "Install: file" in cyan should be in a single command line else there are sync problems in multithread (-j X) These colors can be tuned in core/Makefile if you use a white terminal. can be disabled with "export BUILD_WITH_COLORS=0" Only the most important output is colored to reduce ics merge problems Change-Id: I0e585079fde6900799ef209367a523d94a51cda5 Colors: add more colors to final build steps also fix releasetool echo and visible recovery echos Change-Id: Icf5d88468572f935610c544bf1d5d356ec9870d3 build in colors: host C/C++ Change-Id: Ic415cab53a2efa104c9d4b31ddbe8c8eb74e493d
Diffstat (limited to 'core/base_rules.mk')
-rw-r--r--core/base_rules.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/base_rules.mk b/core/base_rules.mk
index ea64cc6..ee99165 100644
--- a/core/base_rules.mk
+++ b/core/base_rules.mk
@@ -556,12 +556,12 @@ ifndef LOCAL_UNINSTALLABLE_MODULE
$(LOCAL_INSTALLED_MODULE): PRIVATE_POST_INSTALL_CMD := $(LOCAL_POST_INSTALL_CMD)
ifneq ($(LOCAL_ACP_UNAVAILABLE),true)
$(LOCAL_INSTALLED_MODULE): $(LOCAL_BUILT_MODULE) | $(ACP)
- @echo "Install: $@"
+ @echo -e ${CL_INS}"Install: $@"${CL_RST}
$(copy-file-to-new-target)
$(PRIVATE_POST_INSTALL_CMD)
else
$(LOCAL_INSTALLED_MODULE): $(LOCAL_BUILT_MODULE)
- @echo "Install: $@"
+ @echo -e ${CL_INS}"Install: $@"${CL_RST}
$(copy-file-to-target-with-cp)
endif