diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-08-06 17:40:40 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-08-06 17:40:40 +0000 |
commit | 1ed5e6dfe8d43c57401a1f3ab6268ed349474213 (patch) | |
tree | 6d6795541c32f3953779b204f4b2f78f3e46c023 | |
parent | 2a562314f397d7c9e2ab3961ea030ba015fb34cc (diff) | |
download | gdb-1ed5e6dfe8d43c57401a1f3ab6268ed349474213.zip gdb-1ed5e6dfe8d43c57401a1f3ab6268ed349474213.tar.gz gdb-1ed5e6dfe8d43c57401a1f3ab6268ed349474213.tar.bz2 |
* configure.in: Define TARGET in header file.
* acconfig.h (TARGET): Add #undef.
* Makefile.am (version.o, bucomm.o): Remove special targets.
* bucomm.c (target): Remove.
* nm.c (program_name): Don't declare.
(target): Make static.
* size.c (target): Make static.
* configure, config.in, Makefile.in: Rebuild.
-rw-r--r-- | binutils/ChangeLog | 11 | ||||
-rw-r--r-- | binutils/acconfig.h | 3 |
2 files changed, 14 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index f8d6032..1131e5ad 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,14 @@ +Wed Aug 6 13:37:58 1997 Ian Lance Taylor <ian@cygnus.com> + + * configure.in: Define TARGET in header file. + * acconfig.h (TARGET): Add #undef. + * Makefile.am (version.o, bucomm.o): Remove special targets. + * bucomm.c (target): Remove. + * nm.c (program_name): Don't declare. + (target): Make static. + * size.c (target): Make static. + * configure, config.in, Makefile.in: Rebuild. + Tue Aug 5 00:01:41 1997 Ian Lance Taylor <ian@cygnus.com> * Makefile.am (check-DEJAGNU): Export r. diff --git a/binutils/acconfig.h b/binutils/acconfig.h index 4a84764..c38c529 100644 --- a/binutils/acconfig.h +++ b/binutils/acconfig.h @@ -5,6 +5,9 @@ /* Version of package. */ #undef VERSION +/* Configured target name. */ +#undef TARGET + /* Whether strstr must be declared even if <string.h> is included. */ #undef NEED_DECLARATION_STRSTR |