From 49444feaefc9ec5a64e5c9a0ce54923f50473013 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 2 Jan 2023 00:06:34 -0500 Subject: sim: common: simplify hw-config.h deps Now that all ports (other than ppc) build in the top-level, we don't need to expand all the hw-config.h targets as a recursive dep. Each port depends on their respective header now, and the ppc port doesn't use it at all. --- sim/common/local.mk | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'sim/common') diff --git a/sim/common/local.mk b/sim/common/local.mk index 2c68f66..0ce7901 100644 --- a/sim/common/local.mk +++ b/sim/common/local.mk @@ -131,9 +131,7 @@ endif touch $@ .PRECIOUS: %/stamp-hw -%C%_HW_CONFIG_H_TARGETS = $(patsubst %,%/hw-config.h,$(SIM_ENABLED_ARCHES)) -MOSTLYCLEANFILES += $(%C%_HW_CONFIG_H_TARGETS) $(patsubst %,%/stamp-hw,$(SIM_ENABLED_ARCHES)) -SIM_ALL_RECURSIVE_DEPS += $(%C%_HW_CONFIG_H_TARGETS) +MOSTLYCLEANFILES += $(SIM_ENABLED_ARCHES:%=%/hw-config.h) $(SIM_ENABLED_ARCHES:%=%/stamp-hw) ## See sim_pre_argv_init and sim_module_install in sim-module.c for more details. ## TODO: Switch this to xxx_SOURCES once projects build objects in local.mk. -- cgit v1.1