diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-11-06 22:42:13 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-11-06 22:42:13 +0000 |
commit | f98c33694641b7cda35a0a4ff786d54132e4bb4b (patch) | |
tree | 56e9630ee6782a2e4e55c9b38893d3274d095e86 /opcodes | |
parent | da40dd533030ae907fac5f17571497e404882bf0 (diff) | |
download | fsf-binutils-gdb-f98c33694641b7cda35a0a4ff786d54132e4bb4b.zip fsf-binutils-gdb-f98c33694641b7cda35a0a4ff786d54132e4bb4b.tar.gz fsf-binutils-gdb-f98c33694641b7cda35a0a4ff786d54132e4bb4b.tar.bz2 |
Mon Nov 6 17:39:47 1995 Harry Dolan <dolan@ssd.intel.com>
* configure.in: Add case for bfd_i860_arch.
* configure: Rebuild.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rwxr-xr-x | opcodes/configure | 1 | ||||
-rw-r--r-- | opcodes/configure.in | 23 |
3 files changed, 17 insertions, 12 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 6e95cc9..5873a66 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +Mon Nov 6 17:39:47 1995 Harry Dolan <dolan@ssd.intel.com> + + * configure.in: Add case for bfd_i860_arch. + * configure: Rebuild. + Fri Nov 3 12:45:31 1995 Ian Lance Taylor <ian@cygnus.com> * m68k-opc.c (m68k_opcodes): Correct fmoveml operands. diff --git a/opcodes/configure b/opcodes/configure index a383900..6b25ce7 100755 --- a/opcodes/configure +++ b/opcodes/configure @@ -796,6 +796,7 @@ if test x${all_targets} = xfalse ; then bfd_h8500_arch) ta="$ta h8500-dis.o" ;; bfd_hppa_arch) ta="$ta hppa-dis.o" ;; bfd_i386_arch) ta="$ta i386-dis.o" ;; + bfd_i860_arch) ;; bfd_i960_arch) ta="$ta i960-dis.o" ;; bfd_m68k_arch) ta="$ta m68k-dis.o m68k-opc.o" ;; bfd_m88k_arch) ta="$ta m88k-dis.o" ;; diff --git a/opcodes/configure.in b/opcodes/configure.in index 0af46fc..1ef7c5d 100644 --- a/opcodes/configure.in +++ b/opcodes/configure.in @@ -27,6 +27,14 @@ AC_ARG_ENABLE(targets, *) enable_targets=$enableval ;; esac])dnl +AC_CONFIG_HEADER(config.h:config.in) + +AC_CONFIG_AUX_DIR(`cd $srcdir/..;pwd`) +AC_CANONICAL_SYSTEM +if test -z "$target" ; then + AC_MSG_ERROR(Unrecognized target system type; please check config.sub.) +fi + # host-specific stuff: . ${srcdir}/../bfd/configure.host @@ -41,16 +49,6 @@ AC_PROG_INSTALL AC_CHECK_HEADERS(string.h strings.h) -AC_CONFIG_AUX_DIR(`cd $srcdir/..;pwd`) -AC_CANONICAL_SYSTEM -if test -z "$target" ; then - AC_MSG_ERROR(Unrecognized target system type; please check config.sub.) -fi -if test -z "$host" ; then - AC_MSG_ERROR(Unrecognized host system type; please check config.sub.) -fi -AC_ARG_PROGRAM - # target-specific stuff: # Canonicalize the secondary target names. @@ -101,6 +99,7 @@ if test x${all_targets} = xfalse ; then bfd_h8500_arch) ta="$ta h8500-dis.o" ;; bfd_hppa_arch) ta="$ta hppa-dis.o" ;; bfd_i386_arch) ta="$ta i386-dis.o" ;; + bfd_i860_arch) ;; bfd_i960_arch) ta="$ta i960-dis.o" ;; bfd_m68k_arch) ta="$ta m68k-dis.o m68k-opc.o" ;; bfd_m88k_arch) ta="$ta m88k-dis.o" ;; @@ -153,5 +152,5 @@ fi AC_SUBST(archdefs) AC_SUBST(BFD_MACHINES) -AC_CONFIG_HEADER(config.h:config.in) -AC_OUTPUT(Makefile) +AC_OUTPUT(Makefile, +[case x$CONFIG_HEADERS in xconfig.h:config.in) echo > stamp-h ;; esac]) |