diff options
author | Jason Thorpe <thorpej@netbsd.org> | 2002-01-08 04:23:02 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@netbsd.org> | 2002-01-08 04:23:02 +0000 |
commit | 8d05742ff61cb729d294257e99ec13104e4c1c35 (patch) | |
tree | ceda788ea57d569ba5c455c5e1b5bfc97902b8ad /bfd/Makefile.in | |
parent | 34c0bd933de019af43d6c8fe0bb7bdf87442eaa9 (diff) | |
download | ppe42-binutils-8d05742ff61cb729d294257e99ec13104e4c1c35.tar.gz ppe42-binutils-8d05742ff61cb729d294257e99ec13104e4c1c35.zip |
bfd:
* Makefile.am (BFD32_BACKENDS): Add elf32-sh-nbsd.lo.
(BFD32_BACKENDS_CFILES): Add elf32-sh-nbsd.c.
(elf32-sh-nbsd.lo): New rule.
* Makefile.in: Regenerate.
* config.bfd (sh*le-*-netbsdelf*): New target.
(sh*-*-netbsdelf*): New target.
* configure.in: Include netbsd-core.lo for native sh*-*-netbsd*.
(bfd_elf32_shnbsd_vec): New vector.
(bfd_elf32_shlnbsd_vec): New vector.
* configure: Regenerate.
* elf32-sh-nbsd.c: New file.
* targets.c: Update copyright years.
(_bfd_target_vector): Add bfd_elf32_shlnbsd_vec and
bfd_elf32_shnbsd_vec.
gas:
* configure.in (sh*le): Set cpu_type=sh and endian=little.
(sh*-*-netbsdelf*): New target.
* configure: Regenerate.
* tc-sh.h: Update copyright years.
(TARGET_FORMAT): Add version for TE_NetBSD.
ld:
* Makefile.am (ALL_EMULATIONS): Add eshelf_nbsd.o and eshlelf_nbsd.o.
(eshelf_nbsd.c): New rule.
(eshlelf_nbsd.c): New rule.
* Makefile.in: Regenerate.
* configure.tgt (sh*le-*-netbsdelf*): New target.
(sh*-*-netbsdelf*): New target.
* emulparams/shelf.sh: Document that shelf_nbsd.sh sources this file.
* ld/emulparams/shelf_nbsd.sh: New emulation.
* ld/emulparams/shlelf_nbsd.sh: New emulation.
Diffstat (limited to 'bfd/Makefile.in')
-rw-r--r-- | bfd/Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bfd/Makefile.in b/bfd/Makefile.in index 4506902d76..604d17549a 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -345,6 +345,7 @@ BFD32_BACKENDS = \ elf32-s390.lo \ elf32-sh.lo \ elf32-sh-lin.lo \ + elf32-sh-nbsd.lo \ elf32-sparc.lo \ elf32-v850.lo \ elf32-xstormy16.lo \ @@ -489,6 +490,7 @@ BFD32_BACKENDS_CFILES = \ elf32-s390.c \ elf32-sh.c \ elf32-sh-lin.c \ + elf32-sh-nbsd.c \ elf32-sparc.c \ elf32-v850.c \ elf32-xstormy16.c \ @@ -1674,6 +1676,10 @@ elf32-sh-lin.lo: elf32-sh-lin.c $(INCDIR)/filenames.h \ $(INCDIR)/elf/internal.h elf-bfd.h $(INCDIR)/elf/common.h \ $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h elf32-sh.c \ $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h elf32-target.h +elf32-sh-nbsd.lo: elf32-sh-nbsd.c $(INCDIR)/filenames.h \ + $(INCDIR)/elf/internal.h elf-bfd.h $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h elf32-sh.c \ + $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h elf32-target.h elf32-sparc.lo: elf32-sparc.c $(INCDIR)/filenames.h \ $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \ $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/sparc.h \ |