blob: 6912fef1c962d30a12f96b718071fa3644ba028b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
# This file is a shell script that supplies the information necessary
# to tailor a template configure script into the configure script
# appropriate for this directory. For more information, check any
# existing configure script.
srctrigger=ar.c
srcname="Binutils"
# per-host:
case "${host_cpu}" in
rs6000) my_host=rs6000
;;
mips)
case "${host_vendor}" in
dec) my_host=decstation ;;
sgi) my_host=irix3 ;;
esac
;;
m88k)
case "${host_vendor}" in
motorola)
my_host=delta88 ;;
*)
case "${host_os}" in
dgux) my_host=dgux ;;
esac
;;
esac
;;
m68k)
case "${host_vendor}" in
cbm)
case ${host_os} in
amigados) my_host=amigados ;;
svr4) my_host=amix ;;
esac
;;
hp)
case "${host_os}" in
hpux) my_host=hp9000 ;;
bsd) my_host=hp300bsd ;;
esac
;;
sony) my_host=news ;;
sun) my_host=sun3 ;;
apollo)
case "${host_os}" in
sysv*) my_host=apollov68 ;;
bsd*) my_host=apollo68 ;;
esac
;;
esac
;;
i386)
case "${host_vendor}" in
*)
case "${host_os}" in
go32) my_host=go32 ;;
sco*) my_host=i386v ;;
sysv) my_host=i386v ;;
mach) my_host=i386mach ;;
msdos) my_host=dose ;;
esac
;;
esac
;;
sparc)
case "${host_os}" in
sunos64) my_host=sparc-ll ;;
*) my_host=sparc ;;
esac
;;
romp) my_host=rtbsd
;;
a29k) my_host=ultra3
;;
tahoe)
my_host=tahoe
;;
vax)
case "${host_os}" in
ultrix) my_host=vaxult ;;
*) my_host=vaxbsd ;;
esac
;;
esac
# Set up to make a link between the host's include file and "sysdep.h".
files="../bfd/hosts/${my_host}.h"
links="sysdep.h"
if [ ! -f ${srcdir}/${files} ] ; then
if [ -n "${my_host}" ] ; then
echo '***' No file ${srcdir}/${files}
fi
echo '***' ${srcname} does not support host ${host}
exit 1
fi
host_makefile_frag=
if [ -f ${srcdir}/../bfd/config/${my_host}.mh ] ; then
host_makefile_frag=../bfd/config/${my_host}.mh
fi
# per-target:
|