* acinclude.m4 (AM_INSTALL_LIBBFD): New.
[deliverable/binutils-gdb.git] / opcodes / configure.in
CommitLineData
252b5132
RH
1dnl Process this file with autoconf to produce a configure script.
2dnl
3
4AC_PREREQ(2.13)
5AC_INIT(z8k-dis.c)
6
7AC_CANONICAL_SYSTEM
8AC_ISC_POSIX
9
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
27b7e12d 14BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ ]*\([^ ]*\)[ ]*).*/\1/p' < ${srcdir}/../bfd/configure.in`
252b5132
RH
15changequote([,])dnl
16
17AM_INIT_AUTOMAKE(opcodes, ${BFD_VERSION})
18
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
24dnl Default to a non shared library. This may be overridden by the
25dnl configure option --enable-shared.
26AM_DISABLE_SHARED
27
28AM_PROG_LIBTOOL
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
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
45
0218d1e4 46build_warnings="-W -Wall -Wstrict-prototypes -Wmissing-prototypes"
a2d91340
AC
47AC_ARG_ENABLE(build-warnings,
48[ --enable-build-warnings Enable build-time compiler warnings if gcc is used],
49[case "${enableval}" in
50 yes) ;;
51 no) build_warnings="-w";;
52 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
53 build_warnings="${build_warnings} ${t}";;
54 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
55 build_warnings="${t} ${build_warnings}";;
56 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
57esac
58if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
59 echo "Setting warning flags = $build_warnings" 6>&1
60fi])dnl
61WARN_CFLAGS=""
62if test "x${build_warnings}" != x -a "x$GCC" = xyes ; then
63 WARN_CFLAGS="${build_warnings}"
64fi
65AC_SUBST(WARN_CFLAGS)
66
252b5132
RH
67AM_CONFIG_HEADER(config.h:config.in)
68
69if test -z "$target" ; then
70 AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
71fi
252b5132
RH
72
73AM_MAINTAINER_MODE
74AC_EXEEXT
75
76# host-specific stuff:
77
78AC_PROG_CC
79
c6ed57bd 80ALL_LINGUAS="fr sv tr es da de id"
252b5132
RH
81CY_GNU_GETTEXT
82
83. ${srcdir}/../bfd/configure.host
84
b6849f55
NC
85BFD_CC_FOR_BUILD
86
252b5132
RH
87AC_SUBST(HDEFINES)
88AC_PROG_INSTALL
89
90AC_CHECK_HEADERS(string.h strings.h stdlib.h)
91
6e31aea3
BE
92cgen_maint=no
93cgendir='$(srcdir)/../cgen'
94
95AC_ARG_ENABLE(cgen-maint,
96[ --enable-cgen-maint[=dir] build cgen generated files],
97[case "${enableval}" in
98 yes) cgen_maint=yes ;;
99 no) cgen_maint=no ;;
100 *)
101 # argument is cgen install directory (not implemented yet).
102 # Having a `share' directory might be more appropriate for the .scm,
103 # .cpu, etc. files.
104 cgen_maint=yes
105 cgendir=${cgen_maint}/lib/cgen
106 ;;
107esac])dnl
108AM_CONDITIONAL(CGEN_MAINT, test x${cgen_maint} = xyes)
109AC_SUBST(cgendir)
252b5132
RH
110
111using_cgen=no
112
113# Horrible hacks to build DLLs on Windows.
114WIN32LDFLAGS=
115WIN32LIBADD=
116case "${host}" in
117*-*-cygwin*)
118 if test "$enable_shared" = "yes"; then
119 WIN32LDFLAGS="-no-undefined"
120 WIN32LIBADD="-L`pwd`/../bfd -lbfd -L`pwd`/../libiberty -liberty -L`pwd`/../intl -lintl -lcygwin"
121 fi
122 ;;
123esac
124AC_SUBST(WIN32LDFLAGS)
125AC_SUBST(WIN32LIBADD)
126
127# target-specific stuff:
128
129# Canonicalize the secondary target names.
130if test -n "$enable_targets" ; then
131 for targ in `echo $enable_targets | sed 's/,/ /g'`
132 do
6d83c84b 133 result=`$ac_config_sub $targ 2>/dev/null`
252b5132
RH
134 if test -n "$result" ; then
135 canon_targets="$canon_targets $result"
136 else
137 # Allow targets that config.sub doesn't recognize, like "all".
138 canon_targets="$canon_targets $targ"
139 fi
140 done
141fi
142
143all_targets=false
144selarchs=
145for targ in $target $canon_targets
146do
147 if test "x$targ" = "xall" ; then
148 all_targets=true
149 else
150 . $srcdir/../bfd/config.bfd
151 selarchs="$selarchs $targ_archs"
152 fi
153done
154
155# Utility var, documents generic cgen support files.
156
157cgen_files="cgen-opc.lo cgen-asm.lo cgen-dis.lo"
158
159# We don't do any links based on the target system, just makefile config.
160
161if test x${all_targets} = xfalse ; then
162
163 # Target architecture .o files.
164 ta=
165
166 for arch in $selarchs
167 do
168 ad=`echo $arch | sed -e s/bfd_//g -e s/_arch//g`
169 archdefs="$archdefs -DARCH_$ad"
170 case "$arch" in
171 bfd_a29k_arch) ta="$ta a29k-dis.lo" ;;
172 bfd_alliant_arch) ;;
173 bfd_alpha_arch) ta="$ta alpha-dis.lo alpha-opc.lo" ;;
0d2bcfaf 174 bfd_arc_arch) ta="$ta arc-dis.lo arc-opc.lo arc-ext.lo" ;;
252b5132 175 bfd_arm_arch) ta="$ta arm-dis.lo" ;;
adde6300 176 bfd_avr_arch) ta="$ta avr-dis.lo" ;;
252b5132 177 bfd_convex_arch) ;;
6c95a37f 178 bfd_cris_arch) ta="$ta cris-dis.lo cris-opc.lo" ;;
252b5132
RH
179 bfd_d10v_arch) ta="$ta d10v-dis.lo d10v-opc.lo" ;;
180 bfd_d30v_arch) ta="$ta d30v-dis.lo d30v-opc.lo" ;;
181 bfd_fr30_arch) ta="$ta fr30-asm.lo fr30-desc.lo fr30-dis.lo fr30-ibld.lo fr30-opc.lo" using_cgen=yes ;;
182 bfd_h8300_arch) ta="$ta h8300-dis.lo" ;;
183 bfd_h8500_arch) ta="$ta h8500-dis.lo" ;;
184 bfd_hppa_arch) ta="$ta hppa-dis.lo" ;;
5b93d8bb 185 bfd_i370_arch) ta="$ta i370-dis.lo i370-opc.lo" ;;
252b5132 186 bfd_i386_arch) ta="$ta i386-dis.lo" ;;
9d751335 187 bfd_i860_arch) ta="$ta i860-dis.lo" ;;
252b5132 188 bfd_i960_arch) ta="$ta i960-dis.lo" ;;
800eeca4 189 bfd_ia64_arch) ta="$ta ia64-dis.lo ia64-opc.lo" ;;
252b5132 190 bfd_m32r_arch) ta="$ta m32r-asm.lo m32r-desc.lo m32r-dis.lo m32r-ibld.lo m32r-opc.lo m32r-opinst.lo" using_cgen=yes ;;
60bcf0fa
NC
191 bfd_m68hc11_arch) ta="$ta m68hc11-dis.lo m68hc11-opc.lo" ;;
192 bfd_m68hc12_arch) ta="$ta m68hc11-dis.lo m68hc11-opc.lo" ;;
252b5132
RH
193 bfd_m68k_arch) ta="$ta m68k-dis.lo m68k-opc.lo" ;;
194 bfd_m88k_arch) ta="$ta m88k-dis.lo" ;;
195 bfd_mcore_arch) ta="$ta mcore-dis.lo" ;;
196 bfd_mips_arch) ta="$ta mips-dis.lo mips-opc.lo mips16-opc.lo" ;;
3c3bdf30 197 bfd_mmix_arch) ta="$ta mmix-dis.lo mmix-opc.lo" ;;
252b5132
RH
198 bfd_mn10200_arch) ta="$ta m10200-dis.lo m10200-opc.lo" ;;
199 bfd_mn10300_arch) ta="$ta m10300-dis.lo m10300-opc.lo" ;;
200 bfd_ns32k_arch) ta="$ta ns32k-dis.lo" ;;
87e6d782 201 bfd_openrisc_arch) ta="$ta openrisc-asm.lo openrisc-desc.lo openrisc-dis.lo openrisc-ibld.lo openrisc-opc.lo" using_cgen=yes ;;
3b16e843 202 bfd_or32_arch) ta="$ta or32-dis.lo or32-opc.lo" using_cgen=yes ;;
e135f41b 203 bfd_pdp11_arch) ta="$ta pdp11-dis.lo pdp11-opc.lo" ;;
1e608f98 204 bfd_pj_arch) ta="$ta pj-dis.lo pj-opc.lo" ;;
252b5132 205 bfd_powerpc_arch) ta="$ta ppc-dis.lo ppc-opc.lo" ;;
a85d7ed0 206 bfd_powerpc_64_arch) ta="$ta ppc-dis.lo ppc-opc.lo" ;;
5dd0794d 207 bfd_pyramid_arch) ;;
252b5132
RH
208 bfd_romp_arch) ;;
209 bfd_rs6000_arch) ta="$ta ppc-dis.lo ppc-opc.lo" ;;
a85d7ed0 210 bfd_s390_arch) ta="$ta s390-dis.lo s390-opc.lo" ;;
09919455 211 bfd_sh_arch)
d28847ce 212 # We can't decide what we want just from the CPU family.
e8b872bb
AO
213 # We want SH5 support unless a specific version of sh is
214 # specified, as in sh3-elf, sh3b-linux-gnu, etc.
ca0f2ed6
HPN
215 # Include it just for ELF targets, since the SH5 bfd:s are ELF only.
216 for t in $target $canon_targets; do
217 case $t in
942e7dd9
JT
218 all | sh64-* | sh-*-*elf* | shl-*-*elf* | shle-*-*elf* | \
219 sh-*-linux* | shl-*-linux*)
d28847ce 220 ta="$ta sh64-dis.lo sh64-opc.lo"
ca0f2ed6
HPN
221 archdefs="$archdefs -DINCLUDE_SHMEDIA"
222 break;;
223 esac;
224 done
09919455 225 ta="$ta sh-dis.lo" ;;
252b5132
RH
226 bfd_sparc_arch) ta="$ta sparc-dis.lo sparc-opc.lo" ;;
227 bfd_tahoe_arch) ;;
228 bfd_tic30_arch) ta="$ta tic30-dis.lo" ;;
5c84d377 229 bfd_tic54x_arch) ta="$ta tic54x-dis.lo tic54x-opc.lo" ;;
252b5132
RH
230 bfd_tic80_arch) ta="$ta tic80-dis.lo tic80-opc.lo" ;;
231 bfd_v850_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
232 bfd_v850e_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
233 bfd_v850ea_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
234 bfd_vax_arch) ta="$ta vax-dis.lo" ;;
235 bfd_w65_arch) ta="$ta w65-dis.lo" ;;
236 bfd_we32k_arch) ;;
93fbbb04 237 bfd_xstormy16_arch) ta="$ta xstormy16-asm.lo xstormy16-desc.lo xstormy16-dis.lo xstormy16-ibld.lo xstormy16-opc.lo" using_cgen=yes ;;
252b5132
RH
238 bfd_z8k_arch) ta="$ta z8k-dis.lo" ;;
239
240 "") ;;
241 *) AC_MSG_ERROR(*** unknown target architecture $arch) ;;
242 esac
243 done
244
245 if test $using_cgen = yes ; then
246 ta="$ta $cgen_files"
247 fi
248
249 # Weed out duplicate .o files.
250 f=""
251 for i in $ta ; do
252 case " $f " in
253 *" $i "*) ;;
254 *) f="$f $i" ;;
255 esac
256 done
257 ta="$f"
258
259 # And duplicate -D flags.
260 f=""
261 for i in $archdefs ; do
262 case " $f " in
263 *" $i "*) ;;
264 *) f="$f $i" ;;
265 esac
266 done
267 archdefs="$f"
268
269 BFD_MACHINES="$ta"
270
271else # all_targets is true
272 archdefs=-DARCH_all
273 BFD_MACHINES='$(ALL_MACHINES)'
274fi
275
276AC_SUBST(archdefs)
277AC_SUBST(BFD_MACHINES)
278
279AC_OUTPUT(Makefile po/Makefile.in:po/Make-in,
280[sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile])
This page took 0.143466 seconds and 4 git commands to generate.