diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-10-31 01:49:17 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-10-31 01:49:17 -0400 |
commit | 68c2129ae6130d073ac9d1792897e738eebfe030 (patch) | |
tree | 7a87b3d47dcd89278a57bc9e42413e8bde0acd28 /sim/v850 | |
parent | 2213e33dd2441eeba71dd6966d12494d64bfc168 (diff) | |
download | gdb-68c2129ae6130d073ac9d1792897e738eebfe030.zip gdb-68c2129ae6130d073ac9d1792897e738eebfe030.tar.gz gdb-68c2129ae6130d073ac9d1792897e738eebfe030.tar.bz2 |
sim: v850: delete old gencode logic
The v850 port used to have a gencode helper, but it was deleted long
ago. Clean up the settings that no longer make sense w/out it.
Diffstat (limited to 'sim/v850')
-rw-r--r-- | sim/v850/Makefile.in | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sim/v850/Makefile.in b/sim/v850/Makefile.in index 2c0c5df..072c750 100644 --- a/sim/v850/Makefile.in +++ b/sim/v850/Makefile.in @@ -25,13 +25,11 @@ SIM_OBJS = \ # List of extra dependencies. # Generally this consists of simulator specific files included by sim-main.h. -SIM_EXTRA_DEPS = v850_sim.h sim-main.h simops.h itable.h +SIM_EXTRA_DEPS = v850_sim.h sim-main.h # List of flags to always pass to $(CC) SIM_EXTRA_CFLAGS = \ - -DDEBUG \ - -I$(srcdir)/../../newlib/libc/sys/sysnecv850 -SIM_EXTRA_CLEAN = clean-extra + -DDEBUG NL_TARGET = -DNL_TARGET_v850 @@ -103,6 +101,3 @@ tmp-igen: $(IGEN_INSN) $(IGEN_DC) $(IGEN) $(SILENCE) $(SHELL) $(srcroot)/move-if-change tmp-engine.c engine.c $(SILENCE) $(SHELL) $(srcroot)/move-if-change tmp-irun.c irun.c $(SILENCE) touch $@ - -clean-extra: clean-igen - rm -f table.c simops.h gencode |