blob: 4da7737d20e3d69e2843ea320718f2a61932ef13 (
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
|
# 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=as.c
srcname="gas"
case $target in
*-coff)
obj_format=coff
;;
*-bout)
obj_format=bout
;;
*)
obj_format=aout
;;
esac
case $target in
vax)
atof=vax
;;
*)
atof=ieee
;;
esac
files="ho-${host}.h tc-${cpu_type}.c tc-${cpu_type}.h te-generic.h obj-${obj_format}.h obj-${obj_format}.c atof-${atof}.c"
links="host.h targ-cpu.c targ-cpu.h targ-env.h obj-format.h obj-format.c atof-targ.c"
|