diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-02-18 17:09:13 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-02-18 17:09:13 +0000 |
commit | 99ec1f66c17e5f363b18a546da336bf3932fc41e (patch) | |
tree | 31ab85c7bb48f2b806fefd520f3ceb8a71c2d977 /bfd/Makefile.in | |
parent | f42f505b519b49687be2ae1b360d88258a159b5c (diff) | |
download | gdb-99ec1f66c17e5f363b18a546da336bf3932fc41e.zip gdb-99ec1f66c17e5f363b18a546da336bf3932fc41e.tar.gz gdb-99ec1f66c17e5f363b18a546da336bf3932fc41e.tar.bz2 |
start-sanitize-powerpc-netware
Support for PowerPC NetWare.
* config.bfd (powerpc-*-netware*): New target; use ppc-nlm.
* config/ppc-nlm.mt: New file.
* configure.in (nlm32_powerpc_vec): New target vector; use
nlm32-powerpc.o, nlm32.o, nlm.o.
* targets.c (nlm32_powerpc_vec): Declare.
* Makefile.in (BFD32_BACKENDS): Add nlm32-powerpc.o.
(CFILES): Should add nlm32-powerpc.c, but didn't, because the
dependencies can't be sanitized.
end-sanitize-powerpc-netware
Initial support for PowerPC ELF. Done without an ABI, and
probably to be changed when I get an ABI.
* config.bfd (powerpc-*-sysv4*): New target; use ppc-elf.
* config/ppc-elf.mt: New file.
* configure.in (bfd_elf32_powerpc_vec): New target vector; use
elf32-powerpc.o, elf32.o, elf.o.
* elf32-powerpc.c: New file.
* elfcode.h (prep_headers): Add bfd_arch_powerpc case.
(elf_set_arch_mach): Likewise.
* targets.c (bfd_elf32_powerpc_vec): Declare.
* Makefile.in (BFD32_BACKENDS): Add elf32-powerpc.o.
(CFILES): Add elf32-powerpc.c.
Rebuilt dependencies.
Diffstat (limited to 'bfd/Makefile.in')
-rw-r--r-- | bfd/Makefile.in | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/bfd/Makefile.in b/bfd/Makefile.in index 05fc6f9..6caeba9 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -101,6 +101,7 @@ ALL_MACHINES = \ cpu-m68k.o \ cpu-m88k.o \ cpu-mips.o \ + cpu-powerpc.o \ cpu-rs6000.o \ cpu-sh.o \ cpu-sparc.o \ @@ -138,6 +139,7 @@ BFD32_BACKENDS = \ elf32-m68k.o \ elf32-m88k.o \ elf32-mips.o \ + elf32-powerpc.o \ elf32-sparc.o \ elf32.o \ hp300hpux.o \ @@ -155,6 +157,9 @@ BFD32_BACKENDS = \ nlm.o \ nlm32-i386.o \ nlm32-sparc.o \ + $(start-sanitize-powerpc-netware) \ + nlm32-powerpc.o \ + $(end-sanitize-powerpc-netware) \ nlm32.o \ oasys.o \ reloc16.o \ @@ -221,11 +226,11 @@ CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c \ coff-m88k.c coff-mips.c coff-sh.c trad-core.c newsos3.c \ i386aout.c i386linux.c netbsd386.c i386mach3.c bout.c aout-adobe.c coff-we32k.c \ i386bsd.c cpu-h8300.c cpu-i960.c cpu-sparc.c cpu-m68k.c \ - cpu-m88k.c cpu-vax.c cpu-mips.c cpu-a29k.c cpu-i386.c \ + cpu-m88k.c cpu-vax.c cpu-mips.c cpu-a29k.c cpu-i386.c cpu-powerpc.c \ cpu-rs6000.c coff-h8300.c som.c cpu-hppa.c cpu-we32k.c reloc16.c \ mipsbsd.c cpu-sh.c \ elf.c elf32.c elf32-sparc.c elf32-i386.c elf32-i860.c elf32-m68k.c \ - elf32-hppa.c elf32-m88k.c elf32-mips.c elf32-gen.c \ + elf32-hppa.c elf32-m88k.c elf32-mips.c elf32-gen.c elf32-powerpc.c \ elf64.c elf64-gen.c \ nlm.c nlm32.c nlm32-i386.c nlm32-sparc.c nlm32-alpha.c \ nlm64.c coff-alpha.c cpu-alpha.c \ @@ -468,7 +473,7 @@ $(BFD_H): stmp-bfd.h ; @true # If the file is still there, kill it. stmp-bfd.h : $(srcdir)/bfd-in2.h Makefile rm -f bfd.h-new 64 ../include/bfd.h - -grep HOST_64_BIT sysdep.h > 64 + -grep BFD_HOST_64_BIT sysdep.h > 64 sed -e 's/@WORDSIZE@/$(WORDSIZE)/' -e '/64-bit.*sysdep.h/ r 64' < $(srcdir)/bfd-in2.h > bfd.h-new $(srcdir)/../move-if-change bfd.h-new $(BFD_H) rm -f 64 @@ -595,6 +600,7 @@ cpu-vax.o : cpu-vax.c cpu-mips.o : cpu-mips.c cpu-a29k.o : cpu-a29k.c cpu-i386.o : cpu-i386.c +cpu-powerpc.o : cpu-powerpc.c cpu-rs6000.o : cpu-rs6000.c coff-h8300.o : coff-h8300.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/h8300.h \ $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h @@ -632,6 +638,8 @@ elf32-mips.o : elf32-mips.c $(INCDIR)/bfdlink.h genlink.h \ elf32-target.h elf32-gen.o : elf32-gen.c libelf.h $(INCDIR)/elf/common.h \ $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elf32-target.h +elf32-powerpc.o : elf32-powerpc.c libelf.h $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elf32-target.h elf64.o : elf64.c elfcode.h libelf.h $(INCDIR)/elf/common.h \ $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elf64-gen.o : elf64-gen.c libelf.h $(INCDIR)/elf/common.h \ |