2000-03-17 23:48:54 +01:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
2006-04-19 21:44:05 +02:00
|
|
|
AC_PREREQ(2.59)
|
2000-03-17 23:48:54 +01:00
|
|
|
AC_INIT(crt0.S)
|
|
|
|
|
2002-11-06 23:54:52 +01:00
|
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
AC_ARG_PROGRAM
|
2000-03-17 23:48:54 +01:00
|
|
|
|
|
|
|
if test "$srcdir" = "." ; then
|
2002-11-06 23:54:52 +01:00
|
|
|
mdir=`echo "${with_multisubdir}/" \
|
|
|
|
| sed -e 's,\([[^/]][[^/]]*\),..,g' -e 's,^/$,,'`
|
|
|
|
AC_CONFIG_AUX_DIR(${mdir}../../..)
|
2000-03-17 23:48:54 +01:00
|
|
|
else
|
2002-11-06 23:54:52 +01:00
|
|
|
AC_CONFIG_AUX_DIR(${srcdir}/../..)
|
2000-03-17 23:48:54 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
|
2001-10-31 20:26:13 +01:00
|
|
|
LIB_AC_PROG_CC
|
2000-03-17 23:48:54 +01: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 21:44:05 +02:00
|
|
|
LIB_AM_PROG_AS
|
2000-03-17 23:48:54 +01: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 21:44:05 +02:00
|
|
|
AC_CONFIG_FILES(Makefile,
|
2003-07-08 18:06:09 +02:00
|
|
|
. ${srcdir}/../../config-ml.in,
|
|
|
|
srcdir=${srcdir}
|
|
|
|
target=${target}
|
2006-05-10 22:51:41 +02:00
|
|
|
with_multisubdir=${with_multisubdir}
|
2003-07-08 18:06:09 +02:00
|
|
|
ac_configure_args="${ac_configure_args} --enable-multilib"
|
|
|
|
CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
|
|
|
|
libgloss_topdir=${srcdir}/../..
|
|
|
|
)
|
2006-04-19 21:44:05 +02:00
|
|
|
AC_OUTPUT
|