blob: ac1e98f2c2bb39f630f3f3b69d2a5e7299b2db5f (
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
|
# 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=libbfd.c
srcname="bfd"
# per-host:
if [ "${host_os}" = "posix" ] ; then
bfd_host=posix
else
case "${host_cpu}" in
rs6000) bfd_host=aix ;;
mips)
case "${host_vendor}" in
dec) bfd_host=dec3100 ;;
esac
;;
m88k)
case "${host_vendor}" in
*)
case "${host_os}" in
dgux) bfd_host=dgux ;;
esac
;;
esac
;;
m68k)
case "${host_vendor}" in
hp) bfd_host=hp9000 ;;
sony) bfd_host=news ;;
sun) bfd_host=sun3 ;;
esac
;;
i386)
case "${host_vendor}" in
*)
case "${host_os}" in
sysv) bfd_host=i386v ;;
esac
;;
esac
;;
sparc)
case "${host_vendor}" in
sun) bfd_host=sun4 ;;
esac
;;
rtpc) bfd_host=rtbsd ;;
tahoe | vax) bfd_host=${host_cpu} ;;
esac
fi
if [ ! -f config/hmake-${bfd_host} ] ; then
echo '***' BFD does not support host ${host}
exit 1
fi
host_makefile_frag=config/hmake-${bfd_host}
# per-target:
case ${target_os} in
aout | coff | bout) bfd_target=${target_cpu}-${target_os} ;;
sunos*)
case "${target_cpu}" in
m68k) bfd_target=sun3 ;;
sparc) bfd_target=sun4 ;;
esac
;;
newsos) bfd_target=news ;;
*)
case "${target_cpu}" in
tahoe | vax)
bfd_target=${target_cpu} ;;
mips)
case "${host_vendor}" in
dec) bfd_host=dec3100 ;;
esac
;;
esac
;;
esac
if [ ! -f config/tmake-${bfd_target} ] ; then
echo '***' BFD does not support target ${target}
exit 1
fi
target_makefile_fragment=config/tmake-${bfd_target}
files=
links=
|