diff options
author | Steve Chamberlain <sac@cygnus> | 1992-09-25 18:11:04 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-09-25 18:11:04 +0000 |
commit | 22a78f0d961fdab4eadf6694a636a6b57d3013ad (patch) | |
tree | 07a7b2d21ae74990a8f586b78e8fe40db64b86e1 /ld/Makefile.in | |
parent | f4e56031512d5c5621fa2e21e7f3e964718ff39c (diff) | |
download | gdb-22a78f0d961fdab4eadf6694a636a6b57d3013ad.zip gdb-22a78f0d961fdab4eadf6694a636a6b57d3013ad.tar.gz gdb-22a78f0d961fdab4eadf6694a636a6b57d3013ad.tar.bz2 |
Fri Sep 25 11:08:01 1992 Steve Chamberlain (sac@thepub.cygnus.com)
Added initial support for the z8k
* z8ksim.em, z8ksim.sc-sh, z8ksim.sh: new files
* configure.in, Makefile.in: modified to reflect above
* ldlang.c (lang_check): when linking conflicting architectures,
make the output file reflect at least one of the bad inputs.
Diffstat (limited to 'ld/Makefile.in')
-rw-r--r-- | ld/Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ld/Makefile.in b/ld/Makefile.in index 194c901..926766b 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -119,7 +119,7 @@ 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_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_vanilla.o em_i386coff.o em_z8ksim.o EMULATION_OFILES=${ALL_EMULATIONS} #EMULATION_OFILES=em_${EMUL}.o ${OTHER_EMULATIONS} @@ -228,6 +228,9 @@ em_h8300xray.c: $(srcdir)/h8300xray.sh \ em_st2000.c: $(srcdir)/st2000.sh \ $(srcdir)/st2000.em $(srcdir)/st2000.sc-sh ${GEN_DEPENDS} ${GENSCRIPTS} st2000.sh +em_z8ksim.c: $(srcdir)/z8ksim.sh \ + $(srcdir)/z8ksim.em $(srcdir)/z8ksim.sc-sh ${GEN_DEPENDS} + ${GENSCRIPTS} z8ksim.sh em_vanilla.c: $(srcdir)/vanilla.sh \ $(srcdir)/vanilla.em $(srcdir)/vanilla.sc-sh ${GEN_DEPENDS} ${GENSCRIPTS} vanilla.sh @@ -381,6 +384,7 @@ ldgram.c:ldgram.y h8300hms.o:h8300hms.c h8300xray.o:h8300xray.c st2000.o:st2000.c +z8ksim.o:z8ksim.c stage1: force -mkdir stage1 |