Mon Nov 6 17:39:47 1995 Harry Dolan <dolan@ssd.intel.com>

* configure.in: Add case for bfd_i860_arch.
	* configure: Rebuild.
This commit is contained in:
Ian Lance Taylor 1995-11-06 22:42:13 +00:00
parent da40dd5330
commit f98c336946
3 changed files with 17 additions and 12 deletions

View File

@ -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.

1
opcodes/configure vendored
View File

@ -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" ;;

View File

@ -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])