2000-03-17 22:48:54 +00:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
2006-04-19 19:44:05 +00:00
|
|
|
AC_PREREQ(2.59)
|
2000-03-17 22:48:54 +00:00
|
|
|
AC_INIT(crt0.S)
|
|
|
|
|
2002-11-06 22:54:52 +00:00
|
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
AC_ARG_PROGRAM
|
2000-03-17 22:48:54 +00:00
|
|
|
|
|
|
|
if test "$srcdir" = "." ; then
|
2002-11-06 22:54:52 +00:00
|
|
|
mdir=`echo "${with_multisubdir}/" \
|
|
|
|
| sed -e 's,\([[^/]][[^/]]*\),..,g' -e 's,^/$,,'`
|
|
|
|
AC_CONFIG_AUX_DIR(${mdir}../../..)
|
2000-03-17 22:48:54 +00:00
|
|
|
else
|
2002-11-06 22:54:52 +00:00
|
|
|
AC_CONFIG_AUX_DIR(${srcdir}/../..)
|
2000-03-17 22:48:54 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
|
2001-10-31 19:26:13 +00:00
|
|
|
LIB_AC_PROG_CC
|
2000-03-17 22:48:54 +00:00
|
|
|
AS=${AS-as}
|
|
|
|
AC_SUBST(AS)
|
|
|
|
AR=${AR-ar}
|
|
|
|
AC_SUBST(AR)
|
|
|
|
LD=${LD-ld}
|
|
|
|
AC_SUBST(LD)
|
|
|
|
AC_PROG_RANLIB
|
2006-04-19 19:44:05 +00:00
|
|
|
LIB_AM_PROG_AS
|
2000-03-17 22:48:54 +00:00
|
|
|
|
|
|
|
host_makefile_frag=${srcdir}/../config/default.mh
|
|
|
|
|
|
|
|
dnl We have to assign the same value to other variables because autoconf
|
|
|
|
dnl doesn't provide a mechanism to substitute a replacement keyword with
|
|
|
|
dnl arbitrary data or pathnames.
|
|
|
|
dnl
|
|
|
|
host_makefile_frag_path=$host_makefile_frag
|
|
|
|
AC_SUBST(host_makefile_frag_path)
|
|
|
|
AC_SUBST_FILE(host_makefile_frag)
|
|
|
|
|
2006-04-19 19:44:05 +00:00
|
|
|
AC_CONFIG_FILES(Makefile,
|
2003-07-08 16:06:09 +00:00
|
|
|
. ${srcdir}/../../config-ml.in,
|
|
|
|
srcdir=${srcdir}
|
|
|
|
target=${target}
|
|
|
|
ac_configure_args="${ac_configure_args} --enable-multilib"
|
|
|
|
CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
|
|
|
|
libgloss_topdir=${srcdir}/../..
|
|
|
|
)
|
2006-04-19 19:44:05 +00:00
|
|
|
AC_OUTPUT
|