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
14BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ 	]*\([^ 	]*\)[ 	]*).*/\1/p' < ${srcdir}/../bfd/configure.in`
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
46build_warnings="-W -Wall"
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
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
72AC_ARG_PROGRAM
73
74AM_MAINTAINER_MODE
75AC_EXEEXT
76
77# host-specific stuff:
78
79AC_PROG_CC
80
81ALL_LINGUAS=
82CY_GNU_GETTEXT
83
84. ${srcdir}/../bfd/configure.host
85
86AC_SUBST(HDEFINES)
87AC_PROG_INSTALL
88
89AC_CHECK_HEADERS(string.h strings.h stdlib.h)
90
91cgen_maint=no
92cgendir='$(srcdir)/../cgen'
93
94AC_ARG_ENABLE(cgen-maint,
95[  --enable-cgen-maint[=dir]    build cgen generated files],
96[case "${enableval}" in
97  yes)	cgen_maint=yes ;;
98  no)	cgen_maint=no ;;
99  *)
100	# argument is cgen install directory (not implemented yet).
101	# Having a `share' directory might be more appropriate for the .scm,
102	# .cpu, etc. files.
103	cgen_maint=yes
104	cgendir=${cgen_maint}/lib/cgen
105	;;
106esac])dnl
107AM_CONDITIONAL(CGEN_MAINT, test x${cgen_maint} = xyes)
108AC_SUBST(cgendir)
109
110using_cgen=no
111
112# Horrible hacks to build DLLs on Windows.
113WIN32LDFLAGS=
114WIN32LIBADD=
115case "${host}" in
116*-*-cygwin*)
117  if test "$enable_shared" = "yes"; then
118    WIN32LDFLAGS="-no-undefined"
119    WIN32LIBADD="-L`pwd`/../bfd -lbfd -L`pwd`/../libiberty -liberty -L`pwd`/../intl -lintl -lcygwin"
120  fi
121  ;;
122esac
123AC_SUBST(WIN32LDFLAGS)
124AC_SUBST(WIN32LIBADD)
125
126# target-specific stuff:
127
128# Canonicalize the secondary target names.
129if test -n "$enable_targets" ; then
130    for targ in `echo $enable_targets | sed 's/,/ /g'`
131    do
132	result=`$ac_config_sub $targ 2>/dev/null`
133	if test -n "$result" ; then
134	    canon_targets="$canon_targets $result"
135	else
136	    # Allow targets that config.sub doesn't recognize, like "all".
137	    canon_targets="$canon_targets $targ"
138	fi
139    done
140fi
141
142all_targets=false
143selarchs=
144for targ in $target $canon_targets
145do
146    if test "x$targ" = "xall" ; then
147        all_targets=true
148    else
149	. $srcdir/../bfd/config.bfd
150	selarchs="$selarchs $targ_archs"
151    fi
152done
153
154# Utility var, documents generic cgen support files.
155
156cgen_files="cgen-opc.lo cgen-asm.lo cgen-dis.lo"
157
158# We don't do any links based on the target system, just makefile config.
159
160if test x${all_targets} = xfalse ; then
161
162    # Target architecture .o files.
163    ta=
164
165    for arch in $selarchs
166    do
167	ad=`echo $arch | sed -e s/bfd_//g -e s/_arch//g`
168	archdefs="$archdefs -DARCH_$ad"
169	case "$arch" in
170	bfd_a29k_arch)		ta="$ta a29k-dis.lo" ;;
171	bfd_alliant_arch)	;;
172	bfd_alpha_arch)		ta="$ta alpha-dis.lo alpha-opc.lo" ;;
173	bfd_arc_arch)		ta="$ta arc-dis.lo arc-opc.lo arc-ext.lo" ;;
174	bfd_arm_arch)		ta="$ta arm-dis.lo" ;;
175	bfd_avr_arch)		ta="$ta avr-dis.lo" ;;
176	bfd_convex_arch)	;;
177	bfd_cris_arch)		ta="$ta cris-dis.lo cris-opc.lo" ;;
178	bfd_d10v_arch)		ta="$ta d10v-dis.lo d10v-opc.lo" ;;
179	bfd_d30v_arch)		ta="$ta d30v-dis.lo d30v-opc.lo" ;;
180	bfd_fr30_arch)          ta="$ta fr30-asm.lo fr30-desc.lo fr30-dis.lo fr30-ibld.lo fr30-opc.lo" using_cgen=yes ;;
181	bfd_h8300_arch)		ta="$ta h8300-dis.lo" ;;
182	bfd_h8500_arch)		ta="$ta h8500-dis.lo" ;;
183	bfd_hppa_arch)		ta="$ta hppa-dis.lo" ;;
184	bfd_i370_arch)		ta="$ta i370-dis.lo i370-opc.lo" ;;
185	bfd_i386_arch)		ta="$ta i386-dis.lo" ;;
186	bfd_i860_arch)		ta="$ta i860-dis.lo" ;;
187	bfd_i960_arch)		ta="$ta i960-dis.lo" ;;
188	bfd_ia64_arch)		ta="$ta ia64-dis.lo ia64-opc.lo" ;;
189	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 ;;
190	bfd_m68hc11_arch)	ta="$ta m68hc11-dis.lo m68hc11-opc.lo" ;;
191	bfd_m68hc12_arch)	ta="$ta m68hc11-dis.lo m68hc11-opc.lo" ;;
192	bfd_m68k_arch)		ta="$ta m68k-dis.lo m68k-opc.lo" ;;
193	bfd_m88k_arch)		ta="$ta m88k-dis.lo" ;;
194	bfd_mcore_arch)		ta="$ta mcore-dis.lo" ;;
195	bfd_mips_arch)		ta="$ta mips-dis.lo mips-opc.lo mips16-opc.lo" ;;
196	bfd_mn10200_arch)	ta="$ta m10200-dis.lo m10200-opc.lo" ;;
197	bfd_mn10300_arch)	ta="$ta m10300-dis.lo m10300-opc.lo" ;;
198	bfd_ns32k_arch)		ta="$ta ns32k-dis.lo" ;;
199	bfd_pj_arch)	        ta="$ta pj-dis.lo pj-opc.lo" ;;
200	bfd_powerpc_arch)	ta="$ta ppc-dis.lo ppc-opc.lo" ;;
201	bfd_powerpc_64_arch)	ta="$ta ppc-dis.lo ppc-opc.lo" ;;
202	bfd_pyramid_arch)	;;
203	bfd_romp_arch)		;;
204	bfd_rs6000_arch)	ta="$ta ppc-dis.lo ppc-opc.lo" ;;
205	bfd_sh_arch)
206				ta="$ta sh-dis.lo" ;;
207	bfd_sparc_arch)		ta="$ta sparc-dis.lo sparc-opc.lo" ;;
208	bfd_tahoe_arch)		;;
209	bfd_tic30_arch)		ta="$ta tic30-dis.lo" ;;
210	bfd_tic54x_arch)	ta="$ta tic54x-dis.lo tic54x-opc.lo" ;;
211	bfd_tic80_arch)		ta="$ta tic80-dis.lo tic80-opc.lo" ;;
212	bfd_v850_arch)		ta="$ta v850-opc.lo v850-dis.lo" ;;
213	bfd_v850e_arch)		ta="$ta v850-opc.lo v850-dis.lo" ;;
214	bfd_v850ea_arch)	ta="$ta v850-opc.lo v850-dis.lo" ;;
215	bfd_vax_arch)		ta="$ta vax-dis.lo" ;;
216	bfd_w65_arch)		ta="$ta w65-dis.lo" ;;
217	bfd_we32k_arch)		;;
218	bfd_z8k_arch)		ta="$ta z8k-dis.lo" ;;
219
220	"")			;;
221	*)		AC_MSG_ERROR(*** unknown target architecture $arch) ;;
222	esac
223    done
224
225    if test $using_cgen = yes ; then
226	ta="$ta $cgen_files"
227    fi
228
229    # Weed out duplicate .o files.
230    f=""
231    for i in $ta ; do
232	case " $f " in
233	*" $i "*) ;;
234	*) f="$f $i" ;;
235	esac
236    done
237    ta="$f"
238
239    # And duplicate -D flags.
240    f=""
241    for i in $archdefs ; do
242	case " $f " in
243	*" $i "*) ;;
244	*) f="$f $i" ;;
245	esac
246    done
247    archdefs="$f"
248
249    BFD_MACHINES="$ta"
250
251else	# all_targets is true
252    archdefs=-DARCH_all
253    BFD_MACHINES='$(ALL_MACHINES)'
254fi
255
256AC_SUBST(archdefs)
257AC_SUBST(BFD_MACHINES)
258
259AC_OUTPUT(Makefile po/Makefile.in:po/Make-in,
260[sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile])
261