aboutsummaryrefslogtreecommitdiff
path: root/sim/common
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-12-25 14:38:48 -0500
committerMike Frysinger <vapier@gentoo.org>2023-01-10 01:15:23 -0500
commit7a1e1f94636358e642631869d0918e758feefd03 (patch)
treefe079ed79a0b6315935492165b86f5a8559ab4db /sim/common
parent437eeee95c10c613d992fc786350618bbafcdf57 (diff)
downloadbinutils-7a1e1f94636358e642631869d0918e758feefd03.zip
binutils-7a1e1f94636358e642631869d0918e758feefd03.tar.gz
binutils-7a1e1f94636358e642631869d0918e758feefd03.tar.bz2
sim: build: drop support for subdir extra deps
Nothing uses this hook anymore, so punt it. It was largely used to track generated files (which we do in the top-level now) and extra header files (which we use automake depgen for now).
Diffstat (limited to 'sim/common')
-rw-r--r--sim/common/Make-common.in14
1 files changed, 0 insertions, 14 deletions
diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in
index b56a49a..ab26c49 100644
--- a/sim/common/Make-common.in
+++ b/sim/common/Make-common.in
@@ -85,9 +85,6 @@ POSTCOMPILE = @true
# List of object files, less common parts.
SIM_OBJS =
-# List of extra dependencies.
-# Generally this consists of simulator specific files included by sim-main.h.
-SIM_EXTRA_DEPS =
# List of flags to always pass to $(CC).
SIM_EXTRA_CFLAGS =
# List of main object files for `run'.
@@ -185,17 +182,6 @@ override POSTCOMPILE =
endif
all_object_files = $(LIB_OBJS) $(SIM_RUN_OBJS)
-generated_files = \
- $(SIM_EXTRA_DEPS)
-
-# Ensure that generated files are created early. Use order-only
-# dependencies if available. They require GNU make 3.80 or newer,
-# and the .VARIABLES variable was introduced at the same time.
-ifdef .VARIABLES
-$(all_object_files): | $(generated_files)
-else
-$(all_object_files) : $(generated_files)
-endif
# Dependencies.
-include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))