forked from openkylin/platform_build
Merge "Write clean_steps.mk with multiple commands" am: 3e2f5d83a4
am: a4e26de266
* commit 'a4e26de26644f00b90232356fb8eae8ba761400d':
Write clean_steps.mk with multiple commands
This commit is contained in:
commit
0cfb04c60e
|
@ -122,9 +122,17 @@ $(shell \
|
|||
mkdir -p $(dir $(clean_steps_file)) && \
|
||||
echo "CURRENT_CLEAN_BUILD_VERSION := $(INTERNAL_CLEAN_BUILD_VERSION)" > \
|
||||
$(clean_steps_file) ;\
|
||||
echo "CURRENT_CLEAN_STEPS := $(INTERNAL_CLEAN_STEPS)" >> \
|
||||
$(clean_steps_file) \
|
||||
echo "CURRENT_CLEAN_STEPS := $(wordlist 1,500,$(INTERNAL_CLEAN_STEPS))" >> $(clean_steps_file) \
|
||||
)
|
||||
define -cs-write-clean-steps-if-arg1-not-empty
|
||||
$(if $(1),$(shell echo "CURRENT_CLEAN_STEPS += $(1)" >> $(clean_steps_file)))
|
||||
endef
|
||||
$(call -cs-write-clean-steps-if-arg1-not-empty,$(wordlist 501,1000,$(INTERNAL_CLEAN_STEPS)))
|
||||
$(call -cs-write-clean-steps-if-arg1-not-empty,$(wordlist 1001,1500,$(INTERNAL_CLEAN_STEPS)))
|
||||
$(call -cs-write-clean-steps-if-arg1-not-empty,$(wordlist 1501,2000,$(INTERNAL_CLEAN_STEPS)))
|
||||
$(call -cs-write-clean-steps-if-arg1-not-empty,$(wordlist 2001,2500,$(INTERNAL_CLEAN_STEPS)))
|
||||
$(call -cs-write-clean-steps-if-arg1-not-empty,$(wordlist 2501,3000,$(INTERNAL_CLEAN_STEPS)))
|
||||
$(call -cs-write-clean-steps-if-arg1-not-empty,$(wordlist 3001,99999,$(INTERNAL_CLEAN_STEPS)))
|
||||
endif
|
||||
|
||||
CURRENT_CLEAN_BUILD_VERSION :=
|
||||
|
|
Loading…
Reference in New Issue