From: Stan Shebs Date: Mon, 25 Jul 1994 20:00:10 +0000 (+0000) Subject: * configure.in (pc532mach_vec): Change to pc532machaout_vec. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=caede51576f1d80723030795000baef96ec6d34c;p=binutils-gdb.git * configure.in (pc532mach_vec): Change to pc532machaout_vec. * config.bfd (ns32k-*-netbsd*): Use ns32k-nbsd as bfd_name. * Makefile.in (ALL_MACHINES): Add cpu-ns32k.o. (BFD32_BACKENDS): Add aout-ns32k.o, netbsd532.o, m88kmach3.o, pc532-mach.o. * targets.c (pc532machaout_vec): Use instead of pc532mach_vec. * config/pc532-mach.mt (DEFAULT_VECTOR): Ditto. (SELECT_VECS): Remove. * config/ns32k-nbsd.mt: New file, was ns32k-netbsd.mt. * config/ns32k-netbsd.mt: Remove, name too long. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index e65fb32297c..d0085567d54 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,16 @@ +Mon Jul 25 12:21:07 1994 Stan Shebs (shebs@andros.cygnus.com) + + * configure.in (pc532mach_vec): Change to pc532machaout_vec. + * config.bfd (ns32k-*-netbsd*): Use ns32k-nbsd as bfd_name. + * Makefile.in (ALL_MACHINES): Add cpu-ns32k.o. + (BFD32_BACKENDS): Add aout-ns32k.o, netbsd532.o, m88kmach3.o, + pc532-mach.o. + * targets.c (pc532machaout_vec): Use instead of pc532mach_vec. + * config/pc532-mach.mt (DEFAULT_VECTOR): Ditto. + (SELECT_VECS): Remove. + * config/ns32k-nbsd.mt: New file, was ns32k-netbsd.mt. + * config/ns32k-netbsd.mt: Remove, name too long. + Fri Jul 22 11:07:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) * linker.c (generic_link_check_archive_element): When changing a diff --git a/bfd/Makefile.in b/bfd/Makefile.in index d7e1fb44329..877eb2ba6ba 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -72,7 +72,7 @@ BFD_H = bfd.h # Some of these files should be in BFD*_BACKENDS below, but some programs # won't link without them. So, in order for some of the minimal-bfd # hacks to work, they're also included here for now. -# gdb: ecoff.o ecofflink.o elf.o +# gdb: elf.o # objdump: elf.o # # Also, Jim Kingdon notes: @@ -86,7 +86,7 @@ BFD_LIBS = \ archive.o archures.o bfd.o cache.o coffgen.o core.o ctor.o \ format.o init.o libbfd.o opncls.o reloc.o \ section.o syms.o targets.o hash.o linker.o \ - ecoff.o ecofflink.o elf.o srec.o + elf.o srec.o # This list is alphabetized to make it easier to keep in sync # with the decls and initializer in archures.c. @@ -101,6 +101,7 @@ ALL_MACHINES = \ cpu-m68k.o \ cpu-m88k.o \ cpu-mips.o \ + cpu-ns32k.o \ cpu-powerpc.o \ cpu-rs6000.o \ cpu-sh.o \ @@ -110,9 +111,10 @@ ALL_MACHINES = \ cpu-z8k.o # The .o files needed by all of the 32 bit vectors that are configured into -# target_vector in targets.c if configured with --with-targets=all. +# target_vector in targets.c if configured with --enable-targets=all. BFD32_BACKENDS = \ aout-adobe.o \ + aout-ns32k.o \ aout0.o \ aout32.o \ bout.o \ @@ -135,6 +137,8 @@ BFD32_BACKENDS = \ coff-u68k.o \ coff-we32k.o \ coff-z8k.o \ + ecoff.o \ + ecofflink.o \ elf32-gen.o \ elf32-hppa.o \ elf32-i386.o \ @@ -152,10 +156,12 @@ BFD32_BACKENDS = \ i386linux.o \ i386lynx.o \ netbsd386.o \ + netbsd532.o \ i386mach3.o \ i386os9k.o \ ieee.o \ m68klynx.o \ + m88kmach3.o \ mipsbsd.o \ newsos3.o \ nlm.o \ @@ -164,14 +170,15 @@ BFD32_BACKENDS = \ nlm32-ppc.o \ nlm32.o \ oasys.o \ + pc532-mach.o \ reloc16.o \ sparclynx.o \ stab-syms.o \ sunos.o # The .o files needed by all of the 64 bit vectors that are configured into -# target_vector in targets.c if configured with --with-targets=all -# and --with-64-bit-bfd. +# target_vector in targets.c if configured with --enable-targets=all +# and --enable-64-bit-bfd. BFD64_BACKENDS = \ aout64.o \ coff-alpha.o \