25 lines
535 B
Text
25 lines
535 B
Text
|
dnl Process this file with autoconf to produce a configure script.
|
||
|
AC_PREREQ(2.3)dnl
|
||
|
AC_INIT(Makefile.in)
|
||
|
|
||
|
AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/../..)
|
||
|
AC_CANONICAL_SYSTEM
|
||
|
AC_ARG_PROGRAM
|
||
|
|
||
|
. ${srcdir}/../../bfd/configure.host
|
||
|
|
||
|
if test -f ${srcdir}/../../bfd/config/${my_host}.mh; then
|
||
|
host_makefile_frag=../../bfd/config/${my_host}.mh
|
||
|
else
|
||
|
host_makefile_frag=/dev/null
|
||
|
fi
|
||
|
|
||
|
frags=
|
||
|
if test $host_makefile_frag != /dev/null; then
|
||
|
frags="$frags $host_makefile_frag"
|
||
|
fi
|
||
|
AC_SUBST_FILE(host_makefile_frag)
|
||
|
AC_SUBST(frags)
|
||
|
|
||
|
AC_OUTPUT(Makefile)
|