diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-06-28 22:11:30 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-06-30 03:01:46 -0400 |
commit | d8b04da736be0c8781e1067ee26e06fdd3b4c63c (patch) | |
tree | 06fd080cb4263278e950e57f41d3227dbb40d0e2 /sim/Makefile.in | |
parent | faa09946fe715da86c3f551c011b887c31b5d62c (diff) | |
download | gdb-d8b04da736be0c8781e1067ee26e06fdd3b4c63c.zip gdb-d8b04da736be0c8781e1067ee26e06fdd3b4c63c.tar.gz gdb-d8b04da736be0c8781e1067ee26e06fdd3b4c63c.tar.bz2 |
sim: bfin: merge with common configure script
Now that the model logic has been migrated into the runtime, there's
nothing specific in the bfin configure code, so merge it into the
common one.
Diffstat (limited to 'sim/Makefile.in')
-rw-r--r-- | sim/Makefile.in | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sim/Makefile.in b/sim/Makefile.in index 1d9e855..929975f 100644 --- a/sim/Makefile.in +++ b/sim/Makefile.in @@ -228,12 +228,12 @@ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = Make-common.sim aarch64/Makefile.sim \ - arm/Makefile.sim avr/Makefile.sim cr16/Makefile.sim \ - d10v/Makefile.sim ft32/Makefile.sim h8300/Makefile.sim \ - m32c/Makefile.sim m68hc11/Makefile.sim mcore/Makefile.sim \ - microblaze/Makefile.sim moxie/Makefile.sim msp430/Makefile.sim \ - pru/Makefile.sim rl78/Makefile.sim rx/Makefile.sim \ - sh/Makefile.sim erc32/Makefile.sim \ + arm/Makefile.sim avr/Makefile.sim bfin/Makefile.sim \ + cr16/Makefile.sim d10v/Makefile.sim ft32/Makefile.sim \ + h8300/Makefile.sim m32c/Makefile.sim m68hc11/Makefile.sim \ + mcore/Makefile.sim microblaze/Makefile.sim moxie/Makefile.sim \ + msp430/Makefile.sim pru/Makefile.sim rl78/Makefile.sim \ + rx/Makefile.sim sh/Makefile.sim erc32/Makefile.sim \ example-synacor/Makefile.sim arch-subdir.mk CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) @@ -952,6 +952,8 @@ arm/Makefile.sim: $(top_builddir)/config.status $(top_srcdir)/arm/Makefile.in cd $(top_builddir) && $(SHELL) ./config.status $@ avr/Makefile.sim: $(top_builddir)/config.status $(top_srcdir)/avr/Makefile.in cd $(top_builddir) && $(SHELL) ./config.status $@ +bfin/Makefile.sim: $(top_builddir)/config.status $(top_srcdir)/bfin/Makefile.in + cd $(top_builddir) && $(SHELL) ./config.status $@ cr16/Makefile.sim: $(top_builddir)/config.status $(top_srcdir)/cr16/Makefile.in cd $(top_builddir) && $(SHELL) ./config.status $@ d10v/Makefile.sim: $(top_builddir)/config.status $(top_srcdir)/d10v/Makefile.in |