Initial revision
[binutils.git] / opcodes / configure.in
blobc2785804b2252d68e381202ec87caf95e3038769
1 dnl Process this file with autoconf to produce a configure script.
2 dnl
4 AC_PREREQ(2.13)
5 AC_INIT(z8k-dis.c)
7 AC_CANONICAL_SYSTEM
8 AC_ISC_POSIX
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.
13 changequote(,)dnl
14 BFD_VERSION=`grep INIT_AUTOMAKE ${srcdir}/../bfd/configure.in | sed -n -e 's/[  ]//g' -e 's/^.*,\(.*\)).*$/\1/p'`
15 changequote([,])dnl
17 AM_INIT_AUTOMAKE(opcodes, ${BFD_VERSION})
19 dnl These must be called before AM_PROG_LIBTOOL, because it may want
20 dnl to call AC_CHECK_PROG.
21 AC_CHECK_TOOL(AR, ar)
22 AC_CHECK_TOOL(RANLIB, ranlib, :)
24 dnl Default to a non shared library.  This may be overridden by the
25 dnl configure option --enable-shared.
26 AM_DISABLE_SHARED
28 AM_PROG_LIBTOOL
30 AC_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 ;;
37 esac])dnl
38 AC_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]) ;;
44 esac])dnl
46 AM_CONFIG_HEADER(config.h:config.in)
48 if test -z "$target" ; then
49     AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
51 AC_ARG_PROGRAM
53 AM_MAINTAINER_MODE
54 AC_EXEEXT
56 # host-specific stuff:
58 AC_PROG_CC
60 ALL_LINGUAS=
61 CY_GNU_GETTEXT
63 . ${srcdir}/../bfd/configure.host
65 AC_SUBST(HDEFINES)
66 AC_PROG_INSTALL
68 AC_CHECK_HEADERS(string.h strings.h stdlib.h)
71 using_cgen=no
73 # Horrible hacks to build DLLs on Windows.
74 WIN32LDFLAGS=
75 WIN32LIBADD=
76 case "${host}" in
77 *-*-cygwin*)
78   if test "$enable_shared" = "yes"; then
79     WIN32LDFLAGS="-no-undefined"
80     WIN32LIBADD="-L`pwd`/../bfd -lbfd -L`pwd`/../libiberty -liberty -L`pwd`/../intl -lintl -lcygwin"
81   fi
82   ;;
83 esac
84 AC_SUBST(WIN32LDFLAGS)
85 AC_SUBST(WIN32LIBADD)
87 # target-specific stuff:
89 # Canonicalize the secondary target names.
90 if test -n "$enable_targets" ; then
91     for targ in `echo $enable_targets | sed 's/,/ /g'`
92     do
93         result=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $targ 2>/dev/null`
94         if test -n "$result" ; then
95             canon_targets="$canon_targets $result"
96         else
97             # Allow targets that config.sub doesn't recognize, like "all".
98             canon_targets="$canon_targets $targ"
99         fi
100     done
103 all_targets=false
104 selarchs=
105 for targ in $target $canon_targets
107     if test "x$targ" = "xall" ; then
108         all_targets=true
109     else
110         . $srcdir/../bfd/config.bfd
111         selarchs="$selarchs $targ_archs"
112     fi
113 done    
115 # Utility var, documents generic cgen support files.
117 cgen_files="cgen-opc.lo cgen-asm.lo cgen-dis.lo"
119 # We don't do any links based on the target system, just makefile config.
121 if test x${all_targets} = xfalse ; then
123     # Target architecture .o files.
124     ta=
126     for arch in $selarchs
127     do
128         ad=`echo $arch | sed -e s/bfd_//g -e s/_arch//g`
129         archdefs="$archdefs -DARCH_$ad"
130         case "$arch" in
131         bfd_a29k_arch)          ta="$ta a29k-dis.lo" ;;
132         bfd_alliant_arch)       ;;
133         bfd_alpha_arch)         ta="$ta alpha-dis.lo alpha-opc.lo" ;;
134         bfd_arc_arch)           ta="$ta arc-dis.lo arc-opc.lo" ;;
135         bfd_arm_arch)           ta="$ta arm-dis.lo" ;;
136         bfd_convex_arch)        ;;
137         bfd_d10v_arch)          ta="$ta d10v-dis.lo d10v-opc.lo" ;;
138         bfd_d30v_arch)          ta="$ta d30v-dis.lo d30v-opc.lo" ;;
139         bfd_fr30_arch)          ta="$ta fr30-asm.lo fr30-desc.lo fr30-dis.lo fr30-ibld.lo fr30-opc.lo" using_cgen=yes ;;
140         bfd_h8300_arch)         ta="$ta h8300-dis.lo" ;;
141         bfd_h8500_arch)         ta="$ta h8500-dis.lo" ;;
142         bfd_hppa_arch)          ta="$ta hppa-dis.lo" ;;
143         bfd_i386_arch)          ta="$ta i386-dis.lo" ;;
144         bfd_i860_arch)          ;;
145         bfd_i960_arch)          ta="$ta i960-dis.lo" ;;
146         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 ;;
147         bfd_m68k_arch)          ta="$ta m68k-dis.lo m68k-opc.lo" ;;
148         bfd_m88k_arch)          ta="$ta m88k-dis.lo" ;;
149         bfd_mcore_arch)         ta="$ta mcore-dis.lo" ;;
150         bfd_mips_arch)          ta="$ta mips-dis.lo mips-opc.lo mips16-opc.lo" ;;
151         bfd_mn10200_arch)       ta="$ta m10200-dis.lo m10200-opc.lo" ;;
152         bfd_mn10300_arch)       ta="$ta m10300-dis.lo m10300-opc.lo" ;;
153         bfd_ns32k_arch)         ta="$ta ns32k-dis.lo" ;;
154         bfd_powerpc_arch)       ta="$ta ppc-dis.lo ppc-opc.lo" ;;
155         bfd_pyramid_arch)       ;;
156         bfd_romp_arch)          ;;
157         bfd_rs6000_arch)        ta="$ta ppc-dis.lo ppc-opc.lo" ;;
158         bfd_sh_arch)            ta="$ta sh-dis.lo" ;;
159         bfd_sparc_arch)         ta="$ta sparc-dis.lo sparc-opc.lo" ;;
160         bfd_tahoe_arch)         ;;
161         bfd_tic30_arch)         ta="$ta tic30-dis.lo" ;;
162         bfd_tic80_arch)         ta="$ta tic80-dis.lo tic80-opc.lo" ;;
163         bfd_v850_arch)          ta="$ta v850-opc.lo v850-dis.lo" ;;
164         bfd_v850e_arch)         ta="$ta v850-opc.lo v850-dis.lo" ;;
165         bfd_v850ea_arch)        ta="$ta v850-opc.lo v850-dis.lo" ;;
166         bfd_vax_arch)           ta="$ta vax-dis.lo" ;;
167         bfd_w65_arch)           ta="$ta w65-dis.lo" ;;
168         bfd_we32k_arch)         ;;
169         bfd_z8k_arch)           ta="$ta z8k-dis.lo" ;;
171         "")                     ;;
172         *)              AC_MSG_ERROR(*** unknown target architecture $arch) ;;
173         esac
174     done
176     if test $using_cgen = yes ; then
177         ta="$ta $cgen_files"
178     fi
180     # Weed out duplicate .o files.
181     f=""
182     for i in $ta ; do
183         case " $f " in
184         *" $i "*) ;;
185         *) f="$f $i" ;;
186         esac
187     done
188     ta="$f"
190     # And duplicate -D flags.
191     f=""
192     for i in $archdefs ; do
193         case " $f " in
194         *" $i "*) ;;
195         *) f="$f $i" ;;
196         esac
197     done
198     archdefs="$f"
200     BFD_MACHINES="$ta"
202 else    # all_targets is true
203     archdefs=-DARCH_all
204     BFD_MACHINES='$(ALL_MACHINES)'
207 AC_SUBST(archdefs)
208 AC_SUBST(BFD_MACHINES)
210 AC_OUTPUT(Makefile po/Makefile.in:po/Make-in,
211 [sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile])