diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-11-03 20:26:01 +0700 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-11-04 13:58:42 +0700 |
commit | 9146585a05aa162e57d13bd2264f7dc84117c40d (patch) | |
tree | 5536cff656d0cb2058f4b2e43f77c59548c9af2a /sim/cris | |
parent | c55c1f6e9d7bcc400bc23a0e29ac9e2681ed4c31 (diff) | |
download | gdb-9146585a05aa162e57d13bd2264f7dc84117c40d.zip gdb-9146585a05aa162e57d13bd2264f7dc84117c40d.tar.gz gdb-9146585a05aa162e57d13bd2264f7dc84117c40d.tar.bz2 |
sim: build: remove various obsolete generation dep variables
These manual settings were necessary when we weren't doing automatic
header dependency tracking. That was changed a while ago, and we use
automake now to do it all for us. As a result, many of these vars
aren't even referenced anymore.
Further, some of the source file generation (e.g. .c files, or igen,
or cgen outputs) were moved to the common automake build, and it takes
care of dependency tracking for us with the object files.
Diffstat (limited to 'sim/cris')
-rw-r--r-- | sim/cris/Makefile.in | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/sim/cris/Makefile.in b/sim/cris/Makefile.in index c3660e7..7b69c11 100644 --- a/sim/cris/Makefile.in +++ b/sim/cris/Makefile.in @@ -33,12 +33,6 @@ SIM_OBJS = \ SIM_EXTRA_HW_DEVICES = rv cris cris_900000xx -# Extra headers included by sim-main.h. -# FIXME: $(srccom)/cgen-ops.h should be in CGEN_INCLUDE_DEPS. -SIM_EXTRA_DEPS = \ - $(CGEN_INCLUDE_DEPS) $(srccom)/cgen-ops.h \ - arch.h cpuall.h cris-sim.h engv10.h engv32.h - SIM_EXTRA_CLEAN = cris-clean ## COMMON_POST_CONFIG_FRAG @@ -56,20 +50,6 @@ rvdummy$(EXEEXT): rvdummy.o $(EXTRA_LIBDEPS) $(ECHO_CCLD) $(LIBTOOL) $(AM_V_lt) --tag=CC --mode=link \ $(CC) $(ALL_CFLAGS) -o rvdummy$(EXEEXT) rvdummy.o $(EXTRA_LIBS) -rvdummy.o: rvdummy.c $(remote_sim_h) $(callback_h) - -# CRISV10 objs - -CRISV10F_INCLUDE_DEPS = \ - $(CGEN_MAIN_CPU_DEPS) \ - cpuv10.h decodev10.h engv10.h - -# CRISV32 objs - -CRISV32F_INCLUDE_DEPS = \ - $(CGEN_MAIN_CPU_DEPS) \ - cpuv32.h decodev32.h engv32.h - cris-clean: -rm -f stamp-arch -rm -f tmp-* rvdummy$(EXEEXT) |