Get CC, etc. vars from configure; build ppc simulator if we are using GCC
[external/binutils.git] / sim / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_PREREQ(2.3)dnl
3 AC_INIT(Makefile.in)
4
5 AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
6 AC_CANONICAL_SYSTEM
7 AC_ARG_PROGRAM
8 AC_PROG_CC
9 AC_SUBST(CFLAGS)
10 AC_SUBST(HDEFINES)
11 AR=${AR-ar}
12 AC_SUBST(AR)
13 AC_PROG_RANLIB
14
15 # Put a plausible default for CC_FOR_BUILD in Makefile.
16 AC_C_CROSS
17 if test "x$cross_compiling" = "xno"; then
18   CC_FOR_BUILD='$(CC)'
19 else
20   CC_FOR_BUILD=gcc
21 fi
22 AC_SUBST(CC_FOR_BUILD)
23
24 # WHEN ADDING ENTRIES TO THIS MATRIX:
25 #  Make sure that the left side always has two dashes.  Otherwise you
26 #  can get spurious matches.  Even for unambiguous cases, do this as a
27 #  convention, else the table becomes a real mess to understand and maintain.
28
29 case "${target}" in
30   arm*-*-*)             sim_target=arm ;;
31   h8300*-*-*)           sim_target=h8300 ;;
32   h8500-*-*)            sim_target=h8500 ;;
33   mips*-*-*)            sim_target=mips ;;
34   sh*-*-*)              sim_target=sh ;; 
35   powerpc*-*-eabi*)     if test x$GCC != x""; then sim_target=ppc; fi ;;
36   w65-*-*)              sim_target=w65 ;;
37   z8k*-*-*)             sim_target=z8k ;;
38   *)                    sim_target=none ;;
39 esac
40
41 configdirs=${sim_target}
42 AC_CONFIG_SUBDIRS($configdirs)
43
44 AC_OUTPUT(Makefile)
45
46 exit 0