* Makefile.in: Delete stuff moved to ../common/Make-common.in.
[binutils-gdb.git] / sim / mips / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_PREREQ(2.5)dnl
3 AC_INIT(Makefile.in)
4
5 SIM_AC_COMMON
6
7 # Ensure a reasonable default simulator is constructed:
8 case "${target}" in
9 mips64*-*-*) SIMCONF="-mips0 --warnings";;
10 mips*-*-*) SIMCONF="-mips2 --warnings";;
11 *) SIMCONF="-mips0 --warnings";;
12 esac
13 AC_SUBST(SIMCONF)
14
15 AC_CHECK_HEADERS(string.h strings.h stdlib.h)
16 AC_CHECK_LIB(m, fabs)
17 AC_CHECK_FUNCS(aint anint sqrt)
18
19 SIM_AC_OUTPUT