summaryrefslogtreecommitdiffstats
path: root/core/main.mk
diff options
context:
space:
mode:
authorChirayu Desai <chirayudesai1@gmail.com>2012-10-13 13:05:29 +0530
committerAdnan Begovic <adnan@cyngn.com>2015-10-06 16:11:54 -0700
commitad48df475f6d4e3e8c6079da6779e7388d2a4b10 (patch)
treea99ba5c18156b45a63650f404271a8956ae2ee19 /core/main.mk
parent978e50cc263f244e0f364faa5bc459a814683d33 (diff)
downloadbuild-ad48df475f6d4e3e8c6079da6779e7388d2a4b10.zip
build-ad48df475f6d4e3e8c6079da6779e7388d2a4b10.tar.gz
build-ad48df475f6d4e3e8c6079da6779e7388d2a4b10.tar.bz2
build-with-colors: moar colors
- rename CL_PFX and CL_INS to better match the colors they show. - add more colors. Output of: - most host stuff is yellow - most target stuff is green - installing/copying files is cyan - import/export includes and notice files is cyan - bootimage/recoveryimage is cyan - and some more colors in many places ;) Change-Id: I5532afa4ba608e0a7c408516dc9f912f9ca389f7
Diffstat (limited to 'core/main.mk')
-rw-r--r--core/main.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/main.mk b/core/main.mk
index 5b6e1e9..76fab2a 100644
--- a/core/main.mk
+++ b/core/main.mk
@@ -1020,7 +1020,7 @@ $(foreach module,$(sample_MODULES),$(eval $(call \
sample_ADDITIONAL_INSTALLED := \
$(filter-out $(modules_to_install) $(modules_to_check) $(ALL_PREBUILT),$(sample_MODULES))
samplecode: $(sample_APKS_COLLECTION)
- @echo "Collect sample code apks: $^"
+ @echo -e ${CL_GRN}"Collect sample code apks:"${CL_RST}" $^"
# remove apks that are not intended to be installed.
rm -f $(sample_ADDITIONAL_INSTALLED)
endif # samplecode in $(MAKECMDGOALS)
@@ -1031,7 +1031,7 @@ findbugs: $(INTERNAL_FINDBUGS_HTML_TARGET) $(INTERNAL_FINDBUGS_XML_TARGET)
.PHONY: clean
clean:
@rm -rf $(OUT_DIR)/*
- @echo "Entire build directory removed."
+ @echo -e ${CL_GRN}"Entire build directory removed."${CL_RST}
.PHONY: clobber
clobber: clean
@@ -1041,7 +1041,7 @@ clobber: clean
#xxx scrape this from ALL_MODULE_NAME_TAGS
.PHONY: modules
modules:
- @echo "Available sub-modules:"
+ @echo -e ${CL_GRN}"Available sub-modules:"${CL_RST}
@echo "$(call module-names-for-tag-list,$(ALL_MODULE_TAGS))" | \
tr -s ' ' '\n' | sort -u | $(COLUMN)