(s_endgif): Update. NLOOP is in quadwords for IMAGE mode now.
[deliverable/binutils-gdb.git] / sim / testsuite / configure.in
CommitLineData
00729fe3
AC
1dnl Process this file file with autoconf to produce a configure script.
2dnl This file is a shell script fragment that supplies the information
3dnl necessary to tailor a template configure script into the configure
4dnl script appropriate for this directory. For more information, check
5dnl any existing configure script.
6
7AC_PREREQ(2.5)
52352d38 8AC_INIT(common/bits-tst.c)
00729fe3
AC
9
10CC=${CC-cc}
11AC_SUBST(CC)
12AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/../..)
13AC_CANONICAL_SYSTEM
14
15# Directories to use in all configurations.
16configdirs=""
17
00729fe3 18# add test sub-directory for appropriate targets
52352d38
AC
19testdir=`echo ${target} | sed -e 's/-.*-/-/'`
20if test -r ${srcdir}/${testdir}/configure ; then
21 configdirs="${configdirs} $testdir"
22fi
00729fe3 23
ed063d52
DE
24case $target in
25 m32r-*-*) use_cgen=yes ;;
26 *) use_cgen=no ;;
27esac
28if test $use_cgen = yes ; then
29 AC_CHECK_PROG(SCHEME, guile, guile, guile)
30fi
31
32# Compute the target architecture.
33# FIXME: Will need to canonicalize some values.
34# FIXME: Should be in generally accessable place.
35case $target in
36 *) arch=${target_cpu} ;;
37esac
38AC_SUBST(arch)
39
00729fe3
AC
40# configure the subdirectories too
41AC_CONFIG_SUBDIRS($configdirs)
42
43AC_OUTPUT(Makefile)
This page took 0.0517 seconds and 4 git commands to generate.