aboutsummaryrefslogtreecommitdiff
path: root/ld/Makefile.in
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1994-02-25 03:32:08 +0000
committerIan Lance Taylor <ian@airs.com>1994-02-25 03:32:08 +0000
commitc361ce46c5c99957614bcb39184c98c139d7c66a (patch)
tree59b5078dc911037035f2b90cb8da523a967c613f /ld/Makefile.in
parentd4e5e3c330d5b2e7b6b972e03b1997a88270f703 (diff)
downloadgdb-c361ce46c5c99957614bcb39184c98c139d7c66a.zip
gdb-c361ce46c5c99957614bcb39184c98c139d7c66a.tar.gz
gdb-c361ce46c5c99957614bcb39184c98c139d7c66a.tar.bz2
* configure.in (powerpc-*-elf*): New target; use ppc-elf32.
* config/ppc-elf32.mt: New file. * emulparams/elf32ppc.sh: New file. * emultempl/ppc.em: New file. * Makefile.in (ALL_EMULATIONS): Added em_elf32ppc.o. (em_elf32ppc.c): New target; uses elf32ppc.sh, ppc.em and elf.sc. (EMULATION_OFILES): Added dependencies on ldexp.h and ldlang.h.
Diffstat (limited to 'ld/Makefile.in')
-rw-r--r--ld/Makefile.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/ld/Makefile.in b/ld/Makefile.in
index d38fe76..b6e349e 100644
--- a/ld/Makefile.in
+++ b/ld/Makefile.in
@@ -173,7 +173,7 @@ ALL_EMULATIONS = em_lnk960.o em_sun3.o em_i386aout.o em_go32.o em_vsta.o \
em_h8500b.o em_h8500s.o em_h8500c.o em_h8500m.o \
em_hppaelf.o em_mipsidtl.o em_sh.o em_elf_i386.o em_alpha.o \
em_i386lynx.o em_m68klynx.o em_sparclynx.o em_coff_sparc.o \
- em_delta68.o \
+ em_delta68.o em_elf32ppc.o \
$(OTHER_EMULATIONS)
# This is now set by configure.in.
@@ -377,13 +377,17 @@ em_alpha.c: $(srcdir)/emulparams/alpha.sh \
em_coff_sparc.c: $(srcdir)/emulparams/coff_sparc.sh \
$(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sparccoff.sc ${GEN_DEPENDS}
${GENSCRIPTS} coff_sparc
+em_elf32ppc.c: $(srcdir)/emulparams/elf32ppc.sh \
+ $(srcdir)/emultempl/ppc.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
+ ${GENSCRIPTS} elf32ppc
$(LD_PROG): $(OFILES) $(BFDLIB) $(LIBIBERTY)
$(CC) $(CFLAGS) $(LDFLAGS) -o $(LD_PROG) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(EXTRALIBS)
# The generated emulation files mostly have the same dependencies.
$(EMULATION_OFILES): ../bfd/bfd.h ../bfd/sysdep.h $(INCDIR)/bfdlink.h \
- ld.h ldmain.h ldemul.h ldfile.h ldmisc.h ldexp.h ldlang.h config.h ldctor.h
+ ld.h ldmain.h ldemul.h ldfile.h ldmisc.h ldexp.h ldlang.h config.h \
+ ldctor.h ldexp.h ldlang.h
# These targets are for the dejagnu testsuites. The file site.exp
# contains global variables that all the testsuites will use.