diff options
author | Ken Raeburn <raeburn@cygnus> | 1994-05-06 06:55:35 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1994-05-06 06:55:35 +0000 |
commit | 38cae0cd30733c3548c5ef2630764dc7b08a543b (patch) | |
tree | 5d91104661fec0716cd3c33fc2be38f6d7e322b7 /ld/emultempl | |
parent | 97dc4cf85043f402f8c98788fdcd1100e17fd91b (diff) | |
download | gdb-38cae0cd30733c3548c5ef2630764dc7b08a543b.zip gdb-38cae0cd30733c3548c5ef2630764dc7b08a543b.tar.gz gdb-38cae0cd30733c3548c5ef2630764dc7b08a543b.tar.bz2 |
* emultempl/generic.em: Use "e" rather than "em_" as prefix for filename.
* emultempl/gld960.em, emultempl/gld960c.em, emultempl/lnk960.em,
emultempl/hppaelf.em, emultempl/m88kbcs.em, emultempl/vanilla.em: Ditto.
* Makefile.in: Changed all generated file names.
(ldemul-list.h): Depend on Makefile, not config.status. Changed sed patterns
to handle new filenames.
Diffstat (limited to 'ld/emultempl')
-rw-r--r-- | ld/emultempl/m88kbcs.em | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ld/emultempl/m88kbcs.em b/ld/emultempl/m88kbcs.em index 73cae7a..8196923 100644 --- a/ld/emultempl/m88kbcs.em +++ b/ld/emultempl/m88kbcs.em @@ -1,6 +1,6 @@ # This shell script emits a C file. -*- C -*- # It does some substitutions. -cat >em_${EMULATION_NAME}.c <<EOF +cat >e${EMULATION_NAME}.c <<EOF /* This file is is generated by a shell script. DO NOT EDIT! */ /* emulate the original gld for the given ${EMULATION_NAME} @@ -61,7 +61,7 @@ s/$/\\n\\/ $s/$/n"/ ' -cat >>em_${EMULATION_NAME}.c <<EOF +cat >>e${EMULATION_NAME}.c <<EOF { *isfile = 0; @@ -81,7 +81,7 @@ EOF else # Scripts read from the filesystem. -cat >>em_${EMULATION_NAME}.c <<EOF +cat >>e${EMULATION_NAME}.c <<EOF { *isfile = 1; @@ -100,7 +100,7 @@ EOF fi -cat >>em_${EMULATION_NAME}.c <<EOF +cat >>e${EMULATION_NAME}.c <<EOF struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation = { |