diff options
author | Jeff Law <law@redhat.com> | 1996-10-03 03:56:20 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-10-03 03:56:20 +0000 |
commit | efc2b0646361ecf67e838c7467e32026fd676f82 (patch) | |
tree | c9e7348cc99fe1d0f8a66b27445e176fdbb72a30 /bfd/Makefile.in | |
parent | 3072af43b04914bb9fe9c6d269d0be6d4161679a (diff) | |
download | gdb-efc2b0646361ecf67e838c7467e32026fd676f82.zip gdb-efc2b0646361ecf67e838c7467e32026fd676f82.tar.gz gdb-efc2b0646361ecf67e838c7467e32026fd676f82.tar.bz2 |
* cpu-mn10x00.c, elf32-mn10x00.c: New files.
* Makefile.in (ALL_MACHINES): Add cpu-mn10x00.o.
(BFD32_BACKENDS): Similarly for elf32-mn10x00.o.
(elf32-mn10x00.o): Add dependencies.
* archures.c (enum bfd_architecture): Add bfd_arch_mn10x00.
(bfd_mn10x00_arch): Declare.
(bfd_archures_list): Add bfd_mn10x00_arch.
* config.bfd: Add mn10x00-*-*.
* configure.in: Add bfd_elf32_mn10x00_vec.
* elf.c (prep_headers): Handle bfd_arch_mn10x00.
* targets.c (bfd_elf32_mn10x00_vec): Declare.
(bfd_target_vector): Add bfd_elf32_mn10x00_vec.
* bfd-in2.h, configure: Rebuilt.
Stubbing out Matsushita support.
Diffstat (limited to 'bfd/Makefile.in')
-rw-r--r-- | bfd/Makefile.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bfd/Makefile.in b/bfd/Makefile.in index 7a60711..7cd26a7 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -131,6 +131,7 @@ ALL_MACHINES = \ cpu-m68k.o \ cpu-m88k.o \ cpu-mips.o \ + cpu-mn10x00.o \ cpu-ns32k.o \ cpu-powerpc.o \ cpu-rs6000.o \ @@ -218,6 +219,7 @@ BFD32_BACKENDS = \ elf32-m68k.o \ elf32-m88k.o \ elf32-mips.o \ + elf32-mn10x00.o \ elf32-ppc.o \ elf32-sh.o \ elf32-sparc.o \ @@ -822,9 +824,13 @@ end-sanitize-d10v: start-sanitize-m32r: elf32-m32r.o: elf32-m32r.c elf-bfd.h $(INCDIR)/elf/common.h \ $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/m32r.h elf32-target.h + elf32-target.h end-sanitize-m32r: +elf32-mn10x00.o: elf32-mn10x00.c elf-bfd.h $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ + elf32-target.h + start-sanitize-v850: cpu-v850.o: cpu-v850.c elf32-v850.o: elf32-v850.c $(INCDIR)/bfdlink.h elf-bfd.h \ |