diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-03-04 20:49:26 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-03-04 20:49:26 +0000 |
commit | ce7d4b0d57a1d6897faabee401ae94ab592f801f (patch) | |
tree | e2332e245057064753c03d2667dcb6bb991abe13 /ld/Makefile.in | |
parent | bf4492933194830c681992f50c16c187b9950b2e (diff) | |
download | gdb-ce7d4b0d57a1d6897faabee401ae94ab592f801f.zip gdb-ce7d4b0d57a1d6897faabee401ae94ab592f801f.tar.gz gdb-ce7d4b0d57a1d6897faabee401ae94ab592f801f.tar.bz2 |
* mips.sc-sh: Added variables which may be overridden by a
specific emulation.
* mipsidt.sh: New file; emulation for IDT MIPS board.
* Makefile.in (ALL_EMULATIONS): Added em_mipsidt.o.
(em_mipsidt.c): New target. Uses mipsidt.sh and mips.sc-sh.
* config/mips-idt.mt: New file; sets EMUL to mipsidt.
* configure.in (mips-idt-ecoff): New target; uses mips-idt.
Diffstat (limited to 'ld/Makefile.in')
-rw-r--r-- | ld/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ld/Makefile.in b/ld/Makefile.in index e0dad2d..8b64bc8 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -120,7 +120,7 @@ ALL_EMULATIONS=em_lnk960.o em_sun3.o em_i386aout.o em_go32.o \ em_h8300hms.o em_ebmon29k.o em_sun4.o em_gld960.o \ em_m68kcoff.o em_h8300xray.o em_st2000.o em_sa29200.o \ em_vanilla.o em_i386coff.o em_z8ksim.o em_mipslit.o em_i386bsd.o \ - em_mipsbig.o em_mipsbsd.o + em_mipsbig.o em_mipsbsd.o em_mipsidt.o EMULATION_OFILES=${ALL_EMULATIONS} #EMULATION_OFILES=em_${EMUL}.o ${OTHER_EMULATIONS} @@ -268,6 +268,9 @@ em_mipsbig.c: $(srcdir)/mipsbig.sh \ em_mipsbsd.c: $(srcdir)/mipsbsd.sh \ $(srcdir)/generic.em $(srcdir)/aout.sc-sh ${GEN_DEPENDS} ${GENSCRIPTS} mipsbsd.sh +em_mipsidt.c: $(srcdir)/mipsidt.sh \ + $(srcdir)/generic.em $(srcdir)/mips.sc-sh ${GEN_DEPENDS} + ${GENSCRIPTS} mipsidt.sh $(LD_PROG): $(OFILES) $(BFDLIB) $(LIBIBERTY) $(CC) $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CDEFINES) $(LDFLAGS) -o $(LD_PROG) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(LOADLIBES) |