* Makefile.in: Add elf32-{mips,m88k}.

elf32-{mips,m88k}.c: New files.
	targets.c (target_vector): Include bfd_elf32_{mips,m88k}_vec.
This commit is contained in:
Jim Kingdon 1993-06-18 16:07:34 +00:00
parent 933ae8d4fd
commit 2c4f2c7296
4 changed files with 22 additions and 4 deletions

View File

@ -77,6 +77,8 @@ elf32-i386.c
elf32-i860.c
elf32-m68k.c
elf32-sparc.c
elf32-m88k.c
elf32-mips.c
elf32-target.h
elf32.c
elf64.c

View File

@ -1,3 +1,9 @@
Fri Jun 18 10:00:14 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* Makefile.in: Add elf32-{mips,m88k}.
elf32-{mips,m88k}.c: New files.
targets.c (target_vector): Include bfd_elf32_{mips,m88k}_vec.
Fri Jun 18 03:12:12 1993 John Gilmore (gnu@cygnus.com)
Eliminate "int8_type", "int16_type", "int32_type", and their

View File

@ -84,7 +84,7 @@ BFD32_BACKENDS = aout32.o sunos.o newsos3.o mipsbsd.o aout-adobe.o \
coff-mips.o coff-msym.o \
elf.o \
elf32.o elf32-sparc.o elf32-i386.o elf32-i860.o elf32-m68k.o \
elf32-hppa.o \
elf32-hppa.o elf32-mips.o elf32-m88k.o \
bout.o \
hppa.o oasys.o ieee.o srec.o stab-syms.o coff-alpha.o coff-sh.o \
hp300hpux.o
@ -137,7 +137,7 @@ CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c \
cpu-rs6000.c coff-h8300.c hppa.c cpu-hppa.c cpu-we32k.c reloc16.c \
mipsbsd.c cpu-sh.c \
elf32.c elf32-sparc.c elf32-i386.c elf32-i860.c elf32-m68k.c \
elf32-hppa.c \
elf32-hppa.c elf32-m88k.c elf32-mips.c \
elf64.c \
coff-alpha.c cpu-alpha.c \
hp300hpux.c i386lynx.c
@ -465,6 +465,10 @@ elf32-i386.o : elf32-i386.c libelf.h libbfd.h $(BFD_H) \
$(INCDIR)/obstack.h
elf32-hppa.o : elf32-hppa.c $(srcdir)/elf32-hppa.h libelf.h libbfd.h \
$(BFD_H) $(INCDIR)/obstack.h
elf32-m88k.o : elf32-m88k.c $(srcdir)/elf32-hppa.h libelf.h libbfd.h \
$(BFD_H) $(INCDIR)/obstack.h
elf32-mips.o : elf32-mips.c $(srcdir)/elf32-hppa.h libelf.h libbfd.h \
$(BFD_H) $(INCDIR)/obstack.h
elf64.o : elf64.c elfcode.h libelf.h libbfd.h $(BFD_H) \
$(INCDIR)/obstack.h

View File

@ -361,6 +361,9 @@ extern bfd_target bfd_elf32_sparc_vec;
extern bfd_target bfd_elf32_i386_vec;
extern bfd_target bfd_elf32_m68k_vec;
extern bfd_target bfd_elf32_i860_vec;
extern bfd_target bfd_elf32_m88k_vec;
extern bfd_target bfd_elf32_bigmips_vec;
extern bfd_target bfd_elf32_littlemips_vec;
extern bfd_target ieee_vec;
extern bfd_target oasys_vec;
extern bfd_target m88kbcs_vec;
@ -416,7 +419,7 @@ bfd_target *target_vector[] = {
&oasys_vec,
#endif
&sunos_big_vec,
#ifdef HOST_64_BIT
#ifdef BFD64
&demo_64_vec, /* Only compiled if host has long-long support */
#endif
&h8300coff_vec,
@ -431,6 +434,9 @@ bfd_target *target_vector[] = {
&bfd_elf32_i386_vec,
&bfd_elf32_m68k_vec,
&bfd_elf32_i860_vec,
&bfd_elf32_m88k_vec,
&bfd_elf32_littlemips_vec,
&bfd_elf32_bigmips_vec,
&a_out_adobe_vec,
&b_out_vec_little_host,
&b_out_vec_big_host,
@ -449,7 +455,7 @@ bfd_target *target_vector[] = {
&sco_core_vec,
#endif
#ifdef AIX386_CORE
&aix386_core_vec,
&aix386_core_vec,
#endif
#endif /* not SELECT_VECS */