diff options
author | Stan Cox <scox@redhat.com> | 2003-01-03 21:12:28 +0000 |
---|---|---|
committer | Stan Cox <scox@redhat.com> | 2003-01-03 21:12:28 +0000 |
commit | a75473eb669e29b5a60695988da32f2c5449d530 (patch) | |
tree | 4ed4a215117198127df421478af317634a555e78 /bfd/Makefile.in | |
parent | 0a8551ddd5fc5dfebac56fdd8f89b1757461e292 (diff) | |
download | gdb-a75473eb669e29b5a60695988da32f2c5449d530.zip gdb-a75473eb669e29b5a60695988da32f2c5449d530.tar.gz gdb-a75473eb669e29b5a60695988da32f2c5449d530.tar.bz2 |
* Makefile.am (ALL_MACHINES): Add cpu-iq2000.lo.
(ALL_MACHINES_CFILES): Add cpu-iq2000.c.
(BFD32_BACKENDS): Add elf32-iq2000.lo.
(BFD32_BACKENDS_CFILES): Add elf32-iq2000.c.
(cpu-iq2000.lo): New target.
* Makefile.in: Regenerate.
* config.bfd: Handle iq2000-*-elf.
* archures.c (bfd_architecture): Add bfd_{arch,mach}_iq2000.
(bfd_archures_list): Add bfd_iq2000_arch.
* configure.in: Handle bfd_elf32_iq2000_vec.
* configure: Regenerate.
* reloc.c: Add BFD_RELOC_IQ2000_OFFSET_16, BFD_RELOC_IQ2000_OFFSET_21,
and BFD_RELOC_IQ2000_UHI16.
* targets.c (bfd_elf32_iq2000_vec): Declare.
(bfd_target_vector): Add bfd_elf32_iq2000_vec.
* elf.c (prep_headers): Set e_machine to EM_IQ2000.
* cpu-iq2000.c: New file.
* elf32-iq2000.c: Likewise.
* libbfd.h: Regenerate.
* bfd-in2.h: Likewise.
Diffstat (limited to 'bfd/Makefile.in')
-rw-r--r-- | bfd/Makefile.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bfd/Makefile.in b/bfd/Makefile.in index efcbd81..dc981a4 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -195,6 +195,7 @@ ALL_MACHINES = \ cpu-i860.lo \ cpu-i960.lo \ cpu-ip2k.lo \ + cpu-iq2000.lo \ cpu-m32r.lo \ cpu-m68hc11.lo \ cpu-m68hc12.lo \ @@ -249,6 +250,7 @@ ALL_MACHINES_CFILES = \ cpu-i860.c \ cpu-i960.c \ cpu-ip2k.c \ + cpu-iq2000.c \ cpu-m32r.c \ cpu-m68hc11.c \ cpu-m68hc12.c \ @@ -350,6 +352,7 @@ BFD32_BACKENDS = \ elf32-i960.lo \ elf32-ia64.lo \ elf32-ip2k.lo \ + elf32-iq2000.lo \ elf32-m32r.lo \ elf32-m68hc11.lo \ elf32-m68hc12.lo \ @@ -509,6 +512,7 @@ BFD32_BACKENDS_CFILES = \ elf32-i860.c \ elf32-i960.c \ elf32-ip2k.c \ + elf32-iq2000.c \ elf32-m32r.c \ elf32-m68k.c \ elf32-m68hc11.c \ @@ -1454,6 +1458,7 @@ cpu-i386.lo: cpu-i386.c $(INCDIR)/filenames.h cpu-i860.lo: cpu-i860.c $(INCDIR)/filenames.h cpu-i960.lo: cpu-i960.c $(INCDIR)/filenames.h cpu-ip2k.lo: cpu-ip2k.c $(INCDIR)/filenames.h +cpu-iq2000.lo: cpu-iq2000.c $(INCDIR)/filenames.h cpu-m32r.lo: cpu-m32r.c $(INCDIR)/filenames.h cpu-m68hc11.lo: cpu-m68hc11.c $(INCDIR)/filenames.h cpu-m68hc12.lo: cpu-m68hc12.c $(INCDIR)/filenames.h @@ -1708,6 +1713,10 @@ elf32-ip2k.lo: elf32-ip2k.c $(INCDIR)/filenames.h elf-bfd.h \ $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ $(INCDIR)/bfdlink.h $(INCDIR)/elf/ip2k.h $(INCDIR)/elf/reloc-macros.h \ elf32-target.h +elf32-iq2000.lo: elf32-iq2000.c $(INCDIR)/filenames.h elf-bfd.h \ + $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ + $(INCDIR)/bfdlink.h $(INCDIR)/elf/iq2000.h $(INCDIR)/elf/reloc-macros.h \ + elf32-target.h elf32-m32r.lo: elf32-m32r.c $(INCDIR)/filenames.h elf-bfd.h \ $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ $(INCDIR)/bfdlink.h $(INCDIR)/elf/m32r.h $(INCDIR)/elf/reloc-macros.h \ |