aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Holland <samuel.holland@sifive.com>2024-03-18 13:49:41 -0700
committerAnup Patel <anup@brainfault.org>2024-04-08 10:08:20 +0530
commita7c5c2cbd27af430e80d894944c479e5e4df71b3 (patch)
tree31141c8dceb30e89aa5619c010e3c981be2ad3c4
parent268feab2949a08743ffbb4afd9d40cdcafd78376 (diff)
downloadopensbi-a7c5c2cbd27af430e80d894944c479e5e4df71b3.zip
opensbi-a7c5c2cbd27af430e80d894944c479e5e4df71b3.tar.gz
opensbi-a7c5c2cbd27af430e80d894944c479e5e4df71b3.tar.bz2
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 <samuel.holland@sifive.com> Reviewed-by: Anup Patel <anup@brainfault.org> Tested-by: Anup Patel <anup@brainfault.org>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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)