old-cross-binutils/sim/configure.in

41 lines
1 KiB
Text
Raw Normal View History

dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.3)dnl
AC_INIT(Makefile.in)
1993-02-04 00:22:22 +00:00
AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
AC_CANONICAL_SYSTEM
AC_ARG_PROGRAM
1993-02-04 00:22:22 +00:00
# WHEN ADDING ENTRIES TO THIS MATRIX:
# Make sure that the left side always has two dashes. Otherwise you
# can get spurious matches. Even for unambiguous cases, do this as a
# convention, else the table becomes a real mess to understand and maintain.
case "${target}" in
arm*-*-*) sim_target=arm ;;
h8300*-*-*) sim_target=h8300 ;;
h8500-*-*) sim_target=h8500 ;;
sh*-*-*) sim_target=sh ;;
w65-*-*) sim_target=w65 ;;
z8k*-*-*) sim_target=z8k ;;
*) sim_target=none ;;
1993-02-04 00:22:22 +00:00
esac
configdirs=${sim_target}
AC_CONFIG_SUBDIRS($configdirs)
1993-02-04 00:22:22 +00:00
if test ! -f ${srcdir}/${sim_target}/${sim_target}.mt ; then
target_makefile_frag=/dev/null
1993-02-04 00:22:22 +00:00
else
target_makefile_frag=${srcdir}/${sim_target}/${sim_target}.mt
fi
frags=
if test $target_makefile_frag != /dev/null; then
frags="$frags $target_makefile_frag"
1993-02-04 00:22:22 +00:00
fi
AC_SUBST_FILE(target_makefile_frag)
AC_SUBST(frags)
1993-02-04 00:22:22 +00:00
AC_OUTPUT(Makefile)