1*d2201f2fSdrahn# This is the binutils target specific file.  This is invoked by the
2*d2201f2fSdrahn# autoconf generated configure script.  Putting it in a separate shell
3*d2201f2fSdrahn# file lets us skip running autoconf when modifying target specific
4*d2201f2fSdrahn# information.
5*d2201f2fSdrahn
6*d2201f2fSdrahn# This file switches on the shell variable ${targ}, and sets the
7*d2201f2fSdrahn# following shell variables:
8*d2201f2fSdrahn# targ_emul		name of emulation to use
9*d2201f2fSdrahn# targ_emul_vector	name of vector to use
10*d2201f2fSdrahn
11*d2201f2fSdrahncase "${targ}" in
12*d2201f2fSdrahn    powerpc-*-aix5* | rs6000-*-aix5*)
13*d2201f2fSdrahn	targ_emul=aix
14*d2201f2fSdrahn	targ_emul_vector=bin_aix5_emulation
15*d2201f2fSdrahn        ;;
16*d2201f2fSdrahn
17*d2201f2fSdrahn    powerpc-*-aix4.3* | rs6000-*-aix4.3*)
18*d2201f2fSdrahn	targ_emul=aix
19*d2201f2fSdrahn        targ_emul_vector=bin_aix_emulation
20*d2201f2fSdrahn        ;;
21*d2201f2fSdrahn
22*d2201f2fSdrahn    *)
23*d2201f2fSdrahn        targ_emul=vanilla
24*d2201f2fSdrahn        targ_emul_vector=bin_vanilla_emulation
25*d2201f2fSdrahn        ;;
26*d2201f2fSdrahnesac
27