diff --git a/Makefile b/Makefile index 873444065..cbd5c0ef9 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ endif # default value defined in this make file will be used # -include $(T)/misc/acrn-config/library/cfg_update.mk +include $(T)/hypervisor/scripts/makefile/cfg_update.mk ifeq ($(DEFAULT_MENU_CONFIG_FILE), $(wildcard $(DEFAULT_MENU_CONFIG_FILE))) BOARD_IN_MENUCONFIG := $(shell grep CONFIG_BOARD= $(DEFAULT_MENU_CONFIG_FILE) | awk -F '"' '{print $$2}') diff --git a/hypervisor/Makefile b/hypervisor/Makefile index 9b92991dc..9b9af3783 100644 --- a/hypervisor/Makefile +++ b/hypervisor/Makefile @@ -44,11 +44,11 @@ ARCH_LDFLAGS := .PHONY: default default: all -include $(BASEDIR)/../misc/acrn-config/library/cfg_update.mk +include scripts/makefile/cfg_update.mk -include $(BASEDIR)/../misc/acrn-config/library/deps.mk +include scripts/makefile/deps.mk -include scripts/kconfig/kconfig.mk +include scripts/makefile/kconfig.mk #initialize scenarios name ifeq ($(CONFIG_SDC),y) diff --git a/misc/acrn-config/library/cfg_update.mk b/hypervisor/scripts/makefile/cfg_update.mk similarity index 100% rename from misc/acrn-config/library/cfg_update.mk rename to hypervisor/scripts/makefile/cfg_update.mk diff --git a/misc/acrn-config/library/deps.mk b/hypervisor/scripts/makefile/deps.mk similarity index 100% rename from misc/acrn-config/library/deps.mk rename to hypervisor/scripts/makefile/deps.mk diff --git a/hypervisor/scripts/kconfig/kconfig.mk b/hypervisor/scripts/makefile/kconfig.mk similarity index 100% rename from hypervisor/scripts/kconfig/kconfig.mk rename to hypervisor/scripts/makefile/kconfig.mk