!646 将menuconfig 与 update_config功能做成一样

Merge pull request !646 from Caoruihong/menuconfig2
This commit is contained in:
openharmony_ci 2021-09-30 07:19:01 +00:00 committed by Gitee
commit 29df5dc1f2
1 changed files with 3 additions and 3 deletions

View File

@ -141,14 +141,14 @@ ifeq ($(origin SYSROOT_PATH),file)
endif endif
endif endif
$(KCONFIG_CMDS): $(filter-out menuconfig,$(KCONFIG_CMDS)):
$(HIDE)$@ $(args) $(HIDE)$@ $(args)
$(LITEOS_CONFIG_FILE): $(KCONFIG_CONFIG) $(LITEOS_CONFIG_FILE): $(KCONFIG_CONFIG)
$(HIDE)env KCONFIG_CONFIG=$< genconfig --config-out $@ --header-path $(LITEOS_MENUCONFIG_H) $(HIDE)env KCONFIG_CONFIG=$< genconfig --config-out $@ --header-path $(LITEOS_MENUCONFIG_H)
update_config: update_config menuconfig:
$(HIDE)test -f "$(CONFIG)" && cp -v "$(CONFIG)" .config && menuconfig && savedefconfig --out "$(CONFIG)" $(HIDE)test -f "$(CONFIG)" && cp -v "$(CONFIG)" .config && menuconfig $(args) && savedefconfig --out "$(CONFIG)"
$(LITEOS_LIBS_TARGET): sysroot $(LITEOS_LIBS_TARGET): sysroot
$(HIDE)for dir in $(LIB_SUBDIRS); do $(MAKE) -C $$dir all || exit 1; done $(HIDE)for dir in $(LIB_SUBDIRS); do $(MAKE) -C $$dir all || exit 1; done