diff options
author | Jason Thorpe <thorpej@netbsd.org> | 2002-05-30 02:14:13 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@netbsd.org> | 2002-05-30 02:14:13 +0000 |
commit | 90ace9e95d9e0875fa6896115ad6f830dbf9cde8 (patch) | |
tree | 7762d7ffb960dc329ff8642cba5e1e4fda4a59aa /bfd/Makefile.am | |
parent | 0a850e40e602c8913d537a658935ec06a2315ff9 (diff) | |
download | gdb-90ace9e95d9e0875fa6896115ad6f830dbf9cde8.zip gdb-90ace9e95d9e0875fa6896115ad6f830dbf9cde8.tar.gz gdb-90ace9e95d9e0875fa6896115ad6f830dbf9cde8.tar.bz2 |
2002-05-29 Matt Thomas <matt@3am-software.com>
* Makefile.am (BFD32_BACKENDS): Add elf32-vax.lo.
(BFD32_BACKENDS_CFILES): Add elf32-vax.c.
(elf32-vax.lo): New rule.
* Makefile.in: Regenerate.
* configure.in (bfd_elf32_vax_vec)
(vaxnetbsd_vec): New vectors.
* configure: Regenerate.
* config.bfd (vax-*-netbsdelf*)
(vax-*-netbsdaout*)
(vax-*-netbsd*): New targets.
* elf32-vax.c: New file.
* reloc.c: Add VAX relocations.
* bfd-in2.h: Regenerate.
* targets.c (_bfd_target_vector): Add bfd_elf32_vax_vec.
Diffstat (limited to 'bfd/Makefile.am')
-rw-r--r-- | bfd/Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bfd/Makefile.am b/bfd/Makefile.am index e8e0cc0..97afb45 100644 --- a/bfd/Makefile.am +++ b/bfd/Makefile.am @@ -231,6 +231,7 @@ BFD32_BACKENDS = \ elf32-sh-nbsd.lo \ elf32-sparc.lo \ elf32-v850.lo \ + elf32-vax.lo \ elf32-xstormy16.lo \ elf32.lo \ elflink.lo \ @@ -380,6 +381,7 @@ BFD32_BACKENDS_CFILES = \ elf32-sh-nbsd.c \ elf32-sparc.c \ elf32-v850.c \ + elf32-vax.c \ elf32-xstormy16.c \ elf32.c \ elflink.c \ @@ -1210,6 +1212,10 @@ elf32-v850.lo: elf32-v850.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ $(INCDIR)/elf/external.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h \ $(INCDIR)/libiberty.h elf32-target.h +elf32-vax.lo: elf32-vax.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ + elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/external.h $(INCDIR)/elf/vax.h $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/libiberty.h elf32-target.h elf32-xstormy16.lo: elf32-xstormy16.c $(INCDIR)/filenames.h \ elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/xstormy16.h \ |