diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-10-25 19:11:46 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-10-25 19:11:46 +0000 |
commit | d40d2d30a0eb6b6a3541132ebe2edde7eae971b5 (patch) | |
tree | e9a22f19956af8ace992d04e689d46b2c14ac014 /bfd/Makefile.in | |
parent | 4bb0cc41f2fb5d838459c90926c0283c7d193857 (diff) | |
download | gdb-d40d2d30a0eb6b6a3541132ebe2edde7eae971b5.zip gdb-d40d2d30a0eb6b6a3541132ebe2edde7eae971b5.tar.gz gdb-d40d2d30a0eb6b6a3541132ebe2edde7eae971b5.tar.bz2 |
* Makefile.in (ALL_MACHINES): Add tekhex.o.
* targets.c (bfd_target_vector): If SELECT_VECS is not defined,
include tekhex_vec.
* tekhex.c (NIBBLE, ISHEX): Cast array arguments to unsigned char.
(getvalue, getsym, out): Likewise.
(find_chunk): Remove unused variable s.
(first_phase): Remove unused variable s.
(pass_over): Remove unused variable address.
(tekhex_object_p): Remove unused variable section.
(move_section_contents): Change return type from boolean to void.
(tekhex_write_object_contents): Remove unused variables tdata and
list.
Diffstat (limited to 'bfd/Makefile.in')
-rw-r--r-- | bfd/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/Makefile.in b/bfd/Makefile.in index 63df6a0..247bd6f 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -177,7 +177,8 @@ BFD32_BACKENDS = \ sparclynx.o \ sparcnetbsd.o \ stab-syms.o \ - sunos.o + sunos.o \ + tekhex.o # The .o files needed by all of the 64 bit vectors that are configured into # target_vector in targets.c if configured with --enable-targets=all |