* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[deliverable/binutils-gdb.git] / opcodes / configure.in
CommitLineData
a21a12e3 1nl Process this file with autoconf to produce a configure script.
1daed53f
ILT
2dnl
3
d5159c25 4AC_PREREQ(2.12.1)
c62d1274 5AC_INIT(z8k-dis.c)
1daed53f
ILT
6
7AC_CANONICAL_SYSTEM
784492b5 8AC_ISC_POSIX
1daed53f 9
072aa625
NC
10# We currently only use the version number for the name of any shared
11# library. For user convenience, we always use the same version
12# number that BFD is using.
13changequote(,)dnl
14BFD_VERSION=`grep INIT_AUTOMAKE ${srcdir}/../bfd/configure.in | sed -n -e 's/[ ]//g' -e 's/^.*,\(.*\)).*$/\1/p'`
15changequote([,])dnl
16
17AM_INIT_AUTOMAKE(opcodes, ${BFD_VERSION})
1daed53f 18
80c396f6
DE
19dnl These must be called before AM_PROG_LIBTOOL, because it may want
20dnl to call AC_CHECK_PROG.
21AC_CHECK_TOOL(AR, ar)
22AC_CHECK_TOOL(RANLIB, ranlib, :)
23
072aa625
NC
24dnl Default to a non shared library. This may be overridden by the
25dnl configure option --enable-shared.
26AM_DISABLE_SHARED
27
1daed53f 28AM_PROG_LIBTOOL
c62d1274
ILT
29
30AC_ARG_ENABLE(targets,
31[ --enable-targets alternative target configurations],
32[case "${enableval}" in
33 yes | "") AC_ERROR(enable-targets option must specify target names or 'all')
34 ;;
35 no) enable_targets= ;;
36 *) enable_targets=$enableval ;;
37esac])dnl
e0bf1022
ILT
38AC_ARG_ENABLE(commonbfdlib,
39[ --enable-commonbfdlib build shared BFD/opcodes/libiberty library],
40[case "${enableval}" in
41 yes) commonbfdlib=true ;;
42 no) commonbfdlib=false ;;
43 *) AC_MSG_ERROR([bad value ${enableval} for opcodes commonbfdlib option]) ;;
44esac])dnl
c62d1274 45
1daed53f 46AM_CONFIG_HEADER(config.h:config.in)
f98c3369 47
f98c3369
ILT
48if test -z "$target" ; then
49 AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
50fi
46bcd2ec 51AC_ARG_PROGRAM
f98c3369 52
1daed53f
ILT
53AM_MAINTAINER_MODE
54AM_CYGWIN32
55AM_EXEEXT
c62d1274 56
1daed53f 57# host-specific stuff:
e0bf1022 58
46bcd2ec
ILT
59AC_PROG_CC
60
784492b5
ILT
61ALL_LINGUAS=
62CY_GNU_GETTEXT
63
40db6118
ILT
64. ${srcdir}/../bfd/configure.host
65
40db6118 66AC_SUBST(HDEFINES)
1daed53f 67AM_PROG_INSTALL
e0bf1022 68
9c03036a 69AC_CHECK_HEADERS(string.h strings.h stdlib.h)
c62d1274 70
bfc10abe 71# start-sanitize-cygnus
69ad8cac 72cgen_maint=no
2ce30166
GN
73# Default is to use one in build tree.
74cgen=../cgen/cgen
75cgendir='$(srcdir)/../cgen'
69ad8cac 76# Having --enable-maintainer-mode take arguments is another way to go.
2ce30166
GN
77# ??? One can argue --with is more appropriate if one wants to specify
78# a directory name, but what we're doing here is an enable/disable kind
79# of thing and specifying both --enable and --with is klunky.
80# If you reeely want this to be --with, go ahead and change it.
69ad8cac 81AC_ARG_ENABLE(cgen-maint,
2ce30166 82[ --enable-cgen-maint[=dir] build cgen generated files],
69ad8cac 83[case "${enableval}" in
2ce30166
GN
84 yes) cgen_maint=yes ;;
85 no) cgen_maint=no ;;
86 *)
87 # argument is cgen install directory (not implemented yet).
88 # Having a `share' directory might be more appropriate for the .scm,
89 # .cpu, etc. files.
90 cgen_maint=yes
91 cgendir=${cgen_maint}/lib/cgen
92 cgen=${cgendir}/bin/cgen
93 ;;
69ad8cac
ILT
94esac])dnl
95AM_CONDITIONAL(CGEN_MAINT, test x${cgen_maint} = xyes)
2ce30166
GN
96AC_SUBST(cgendir)
97AC_SUBST(cgen)
bfc10abe
DE
98# end-sanitize-cygnus
99
072aa625
NC
100# Horrible hacks to build DLLs on Windows.
101WIN32LDFLAGS=
102WIN32LIBADD=
103case "${host}" in
2ce30166 104*-*-cygwin*)
072aa625
NC
105 if test "$enable_shared" = "yes"; then
106 WIN32LDFLAGS="-no-undefined"
69ad8cac 107 WIN32LIBADD="-L`pwd`/../bfd -lbfd -L`pwd`/../libiberty -liberty -L`pwd`/../intl -lintl -lcygwin"
072aa625
NC
108 fi
109 ;;
110esac
111AC_SUBST(WIN32LDFLAGS)
112AC_SUBST(WIN32LIBADD)
113
c62d1274 114# target-specific stuff:
d94aca1a
MT
115
116# Canonicalize the secondary target names.
c62d1274 117if test -n "$enable_targets" ; then
d94aca1a
MT
118 for targ in `echo $enable_targets | sed 's/,/ /g'`
119 do
1daed53f 120 result=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $targ 2>/dev/null`
c62d1274 121 if test -n "$result" ; then
d94aca1a
MT
122 canon_targets="$canon_targets $result"
123 else
124 # Allow targets that config.sub doesn't recognize, like "all".
125 canon_targets="$canon_targets $targ"
126 fi
127 done
128fi
129
130all_targets=false
c62d1274 131selarchs=
d94aca1a
MT
132for targ in $target $canon_targets
133do
c62d1274 134 if test "x$targ" = "xall" ; then
d94aca1a
MT
135 all_targets=true
136 else
c62d1274
ILT
137 . $srcdir/../bfd/config.bfd
138 selarchs="$selarchs $targ_archs"
d94aca1a 139 fi
c62d1274 140done
d94aca1a 141
9c03036a
DE
142# Utility var, documents generic cgen support files.
143
1daed53f 144cgen_files="cgen-opc.lo cgen-asm.lo cgen-dis.lo"
9c03036a 145
d94aca1a
MT
146# We don't do any links based on the target system, just makefile config.
147
c62d1274 148if test x${all_targets} = xfalse ; then
d94aca1a
MT
149
150 # Target architecture .o files.
151 ta=
152
c62d1274 153 for arch in $selarchs
d94aca1a
MT
154 do
155 ad=`echo $arch | sed -e s/bfd_//g -e s/_arch//g`
156 archdefs="$archdefs -DARCH_$ad"
157 case "$arch" in
1daed53f 158 bfd_a29k_arch) ta="$ta a29k-dis.lo" ;;
e0bf1022 159 bfd_alliant_arch) ;;
1daed53f 160 bfd_alpha_arch) ta="$ta alpha-dis.lo alpha-opc.lo" ;;
1daed53f 161 bfd_arc_arch) ta="$ta arc-dis.lo arc-opc.lo" ;;
1daed53f 162 bfd_arm_arch) ta="$ta arm-dis.lo" ;;
e0bf1022 163 bfd_convex_arch) ;;
1daed53f 164 bfd_d10v_arch) ta="$ta d10v-dis.lo d10v-opc.lo" ;;
1daed53f 165 bfd_d30v_arch) ta="$ta d30v-dis.lo d30v-opc.lo" ;;
a86481d3 166 bfd_fr30_arch) ta="$ta $cgen_files fr30-opc.lo fr30-asm.lo fr30-dis.lo" ;;
1daed53f
ILT
167 bfd_h8300_arch) ta="$ta h8300-dis.lo" ;;
168 bfd_h8500_arch) ta="$ta h8500-dis.lo" ;;
169 bfd_hppa_arch) ta="$ta hppa-dis.lo" ;;
170 bfd_i386_arch) ta="$ta i386-dis.lo" ;;
f98c3369 171 bfd_i860_arch) ;;
d5159c25 172 bfd_i960_arch) ta="$ta $cgen_files i960-dis.lo i960c-opc.lo i960c-asm.lo i960c-dis.lo" ;;
1daed53f
ILT
173 bfd_m32r_arch) ta="$ta $cgen_files m32r-opc.lo m32r-asm.lo m32r-dis.lo" ;;
174 bfd_m68k_arch) ta="$ta m68k-dis.lo m68k-opc.lo" ;;
175 bfd_m88k_arch) ta="$ta m88k-dis.lo" ;;
176 bfd_mips_arch) ta="$ta mips-dis.lo mips-opc.lo mips16-opc.lo" ;;
177 bfd_mn10200_arch) ta="$ta m10200-dis.lo m10200-opc.lo" ;;
178 bfd_mn10300_arch) ta="$ta m10300-dis.lo m10300-opc.lo" ;;
179 bfd_ns32k_arch) ta="$ta ns32k-dis.lo" ;;
180 bfd_powerpc_arch) ta="$ta ppc-dis.lo ppc-opc.lo" ;;
e0bf1022
ILT
181 bfd_pyramid_arch) ;;
182 bfd_romp_arch) ;;
1daed53f
ILT
183 bfd_rs6000_arch) ta="$ta ppc-dis.lo ppc-opc.lo" ;;
184 bfd_sh_arch) ta="$ta sh-dis.lo" ;;
185 bfd_sparc_arch) ta="$ta sparc-dis.lo sparc-opc.lo" ;;
e0bf1022 186 bfd_tahoe_arch) ;;
072aa625 187 bfd_tic30_arch) ta="$ta tic30-dis.lo" ;;
b2e3f844 188# start-sanitize-tic80
1daed53f 189 bfd_tic80_arch) ta="$ta tic80-dis.lo tic80-opc.lo" ;;
b2e3f844 190# end-sanitize-tic80
80c396f6 191# start-sanitize-sky
37130f11 192 bfd_dvp_arch) ta="$ta mips-dis.lo mips-opc.lo mips16-opc.lo dvp-dis.lo dvp-opc.lo" ;;
80c396f6 193# end-sanitize-sky
1daed53f 194 bfd_v850_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
010916c2 195 bfd_v850e_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
80c396f6 196 bfd_v850ea_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
69ad8cac 197 bfd_vax_arch) ta="$ta vax-dis.lo" ;;
1daed53f 198 bfd_w65_arch) ta="$ta w65-dis.lo" ;;
d94aca1a 199 bfd_we32k_arch) ;;
1daed53f 200 bfd_z8k_arch) ta="$ta z8k-dis.lo" ;;
d94aca1a
MT
201
202 "") ;;
c62d1274 203 *) AC_MSG_ERROR(*** unknown target architecture $arch) ;;
d94aca1a
MT
204 esac
205 done
206
207 # Weed out duplicate .o files.
208 f=""
209 for i in $ta ; do
210 case " $f " in
211 *" $i "*) ;;
212 *) f="$f $i" ;;
213 esac
214 done
215 ta="$f"
216
217 # And duplicate -D flags.
218 f=""
219 for i in $archdefs ; do
220 case " $f " in
221 *" $i "*) ;;
222 *) f="$f $i" ;;
223 esac
224 done
225 archdefs="$f"
226
c62d1274 227 BFD_MACHINES="$ta"
d94aca1a
MT
228
229else # all_targets is true
c62d1274
ILT
230 archdefs=-DARCH_all
231 BFD_MACHINES='$(ALL_MACHINES)'
232fi
233
234AC_SUBST(archdefs)
235AC_SUBST(BFD_MACHINES)
d94aca1a 236
072aa625
NC
237AC_OUTPUT(Makefile po/Makefile.in:po/Make-in,
238[sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile])
This page took 0.227105 seconds and 4 git commands to generate.