1104834Sobrien# This is the binutils target specific file.  This is invoked by the
2104834Sobrien# autoconf generated configure script.  Putting it in a separate shell
3104834Sobrien# file lets us skip running autoconf when modifying target specific
4104834Sobrien# information.
5104834Sobrien
6104834Sobrien# This file switches on the shell variable ${targ}, and sets the
7104834Sobrien# following shell variables:
8104834Sobrien# targ_emul		name of emulation to use
9104834Sobrien# targ_emul_vector	name of vector to use
10104834Sobrien
11104834Sobriencase "${targ}" in
12104834Sobrien    powerpc-*-aix5* | rs6000-*-aix5*)
13104834Sobrien	targ_emul=aix 
14104834Sobrien	targ_emul_vector=bin_aix5_emulation 
15104834Sobrien        ;;
16104834Sobrien
17104834Sobrien    powerpc-*-aix4.3* | rs6000-*-aix4.3*)
18104834Sobrien	targ_emul=aix 
19104834Sobrien        targ_emul_vector=bin_aix_emulation 
20104834Sobrien        ;;
21104834Sobrien
22104834Sobrien    *)
23104834Sobrien        targ_emul=vanilla 
24104834Sobrien        targ_emul_vector=bin_vanilla_emulation 
25104834Sobrien        ;;
26104834Sobrienesac
27