From: Samuel Holland Date: Mon, 18 Mar 2024 20:49:41 +0000 (-0700) Subject: Makefile: Remove unnecessary dependencies X-Git-Tag: v1.5~57 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a7c5c2cbd27af430e80d894944c479e5e4df71b3;p=platform%2Fkernel%2Fopensbi.git Makefile: Remove unnecessary dependencies The rule included from auto.conf.cmd adds a dependency on every Kconfig file, so these two Kconfig files do not need to be specified again here. Signed-off-by: Samuel Holland Reviewed-by: Anup Patel Tested-by: Anup Patel --- diff --git a/Makefile b/Makefile index e3b3b52..7df39b4 100644 --- a/Makefile +++ b/Makefile @@ -227,7 +227,7 @@ savedefconfig: $(platform_src_dir)/Kconfig $(src_dir)/Kconfig $(CMD_PREFIX)mkdir -p $(KCONFIG_DIR) $(CMD_PREFIX)$(src_dir)/scripts/Kconfiglib/savedefconfig.py --kconfig $(src_dir)/Kconfig --out $(KCONFIG_DIR)/defconfig -$(KCONFIG_CONFIG): $(platform_src_dir)/configs/$(PLATFORM_DEFCONFIG) $(platform_src_dir)/Kconfig $(src_dir)/Kconfig +$(KCONFIG_CONFIG): $(platform_src_dir)/configs/$(PLATFORM_DEFCONFIG) $(CMD_PREFIX)mkdir -p $(KCONFIG_DIR) $(CMD_PREFIX)$(src_dir)/scripts/Kconfiglib/defconfig.py --kconfig $(src_dir)/Kconfig $(platform_src_dir)/configs/$(PLATFORM_DEFCONFIG)