* configure.in (AC_PREREQ): autoconf 2.5 or higher.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.disasm / configure.in
1 dnl Process this file file with autoconf to produce a configure script.
2 dnl This file is a shell script fragment that supplies the information
3 dnl necessary to tailor a template configure script into the configure
4 dnl script appropriate for this directory. For more information, check
5 dnl any existing configure script.
6
7 AC_PREREQ(2.5)
8 AC_INIT(sh3.mt)
9
10 CC=${CC-cc}
11 AC_SUBST(CC)
12 AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/../../..)
13 AC_CANONICAL_SYSTEM
14
15 case "${target}" in
16 hppa*-*-*) target_makefile_frag=hppa.mt ;;
17 sh*-*-*) target_makefile_frag=sh3.mt ;;
18 *-*-*) target_makefile_frag=default.mt ;;
19 esac
20
21 # We also need to use a makefile fragment for the embedded targets
22 # to get the flags right to build the test cases
23 AC_SUBST_FILE(target_makefile_frag)
24
25 AC_OUTPUT(Makefile)
This page took 0.036952 seconds and 4 git commands to generate.