Merge "Add more status output"

am: 5787711e75

Change-Id: I0f6ee9a8ac4c04ed8effd2a2962503462954c360
This commit is contained in:
Dan Willemsen 2018-07-12 21:06:51 -07:00 committed by android-build-merger
commit 468206e4cd
1 changed files with 13 additions and 1 deletions

View File

@ -26,6 +26,8 @@ $(sort $(MAKECMDGOALS)) : run_soong_ui
else # KATI
$(info [1/1] initializing build system ...)
# Absolute path of the present working direcotry.
# This overrides the shell variable $PWD, which does not necessarily points to
# the top of the source tree, for example when "make -C" is used in m/mm/mmm.
@ -409,6 +411,8 @@ ifneq ($(PRODUCT_ENFORCE_RRO_TARGETS),)
ENFORCE_RRO_SOURCES :=
endif
subdir_makefiles_inc := .
ifneq ($(ONE_SHOT_MAKEFILE),)
# We've probably been invoked by the "mm" shell function
# with a subdirectory's makefile.
@ -453,7 +457,7 @@ ifneq ($(dont_bother),true)
#
subdir_makefiles := $(SOONG_ANDROID_MK) $(file <$(OUT_DIR)/.module_paths/Android.mk.list)
subdir_makefiles_total := $(words $(subdir_makefiles))
subdir_makefiles_total := $(words int $(subdir_makefiles) post finish)
.KATI_READONLY := subdir_makefiles_total
$(foreach mk,$(subdir_makefiles),$(info [$(call inc_and_print,subdir_makefiles_inc)/$(subdir_makefiles_total)] including $(mk) ...)$(eval include $(mk)))
@ -469,6 +473,12 @@ endif # dont_bother
endif # ONE_SHOT_MAKEFILE
ifndef subdir_makefiles_total
subdir_makefiles_total := $(words init post finish)
endif
$(info [$(call inc_and_print,subdir_makefiles_inc)/$(subdir_makefiles_total)] finishing build rules ...)
# -------------------------------------------------------------------
# All module makefiles have been included at this point.
# -------------------------------------------------------------------
@ -1409,4 +1419,6 @@ tidy_only:
ndk: $(SOONG_OUT_DIR)/ndk.timestamp
.PHONY: ndk
$(info [$(call inc_and_print,subdir_makefiles_inc)/$(subdir_makefiles_total)] writing build rules ...)
endif # KATI