diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1993-07-15 21:45:16 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1993-07-15 21:45:16 +0000 |
commit | 4ab3a31f9ef9f402cb796380dc63de917865e1bb (patch) | |
tree | f5781921d2773df4c8300fe16621c320fd30366b | |
parent | bbd2521f2630126f7f9285e53d6dcb3a746660d8 (diff) | |
download | gdb-4ab3a31f9ef9f402cb796380dc63de917865e1bb.zip gdb-4ab3a31f9ef9f402cb796380dc63de917865e1bb.tar.gz gdb-4ab3a31f9ef9f402cb796380dc63de917865e1bb.tar.bz2 |
Add h8/300h support.
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/Makefile.in | 5 |
2 files changed, 10 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 9ca7867..6931f99 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +Thu Jul 15 14:43:34 1993 Doug Evans (dje@canuck.cygnus.com) + + * Makefile.in: Add h8300h support. + emulparms/h8300h.sh: New file. + scripttemp/h8300h.sc: New file. + Thu Jul 15 12:44:35 1993 David J. Mackenzie (djm@thepub.cygnus.com) * ldfile.c (ldfile_open_file): In error message, use the name the diff --git a/ld/Makefile.in b/ld/Makefile.in index 815e279..fabf9e4 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -135,7 +135,7 @@ LIBIBERTY=./../libiberty/libiberty.a ALL_EMULATIONS=em_lnk960.o em_sun3.o em_i386aout.o em_go32.o \ em_m88kbcs.o em_a29k.o em_news.o em_hp300bsd.o em_hp3hpux.o \ - em_h8300.o em_ebmon29k.o em_sun4.o em_gld960.o \ + em_h8300.o em_h8300h.o em_ebmon29k.o em_sun4.o em_gld960.o \ em_m68kcoff.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_mipsidt.o em_vax.o em_h8500.o \ @@ -257,6 +257,9 @@ em_m88kbcs.c: $(srcdir)/emulparams/m88kbcs.sh \ em_h8300.c: $(srcdir)/emulparams/h8300.sh \ $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300.sc ${GEN_DEPENDS} ${GENSCRIPTS} h8300.sh +em_h8300h.c: $(srcdir)/emulparams/h8300h.sh \ + $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300h.sc ${GEN_DEPENDS} + ${GENSCRIPTS} h8300h.sh em_h8500.c: $(srcdir)/emulparams/h8500.sh \ $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500.sc ${GEN_DEPENDS} ${GENSCRIPTS} h8500.sh |