1dnl This is the newlib/libc/sys/linux/machine/i386 configure.in file.
2dnl Process this file with autoconf to produce a configure script.
3
4AC_PREREQ(2.5)
5AC_INIT(crt0.c)
6
7dnl Can't be done in NEWLIB_CONFIGURE because that confuses automake.
8AC_CONFIG_AUX_DIR(../../../../../..)
9
10NEWLIB_CONFIGURE(../../../../..)
11
12dnl We have to enable libtool after NEWLIB_CONFIGURE because if we try and
13dnl add it into NEWLIB_CONFIGURE, executable tests are made before the first
14dnl line of the macro which fail because appropriate LDFLAGS are not set.
15
16if test "${use_libtool}" = "yes"; then
17AC_LIBTOOL_WIN32_DLL
18AM_PROG_LIBTOOL
19AC_PROG_AWK
20fi
21
22AC_OUTPUT(Makefile)
23