libtool/depdemo/configure.in

31 lines
449 B
Plaintext
Raw Normal View History

dnl Process this file with autoconf to create configure.
1998-11-25 04:32:39 +08:00
AC_INIT(main.c)
AM_INIT_AUTOMAKE(depdemo,0.1)
1998-11-25 04:32:39 +08:00
AC_PROG_CC
AC_EXEEXT
AM_PROG_LIBTOOL
AC_SUBST(LIBTOOL_DEPS)
1998-11-25 04:32:39 +08:00
1999-03-14 01:41:49 +08:00
if ${CONFIG_SHELL} ./libtool --features | grep "enable static" >/dev/null; then
STATIC=-static
else
STATIC=
fi
AC_SUBST(STATIC)
1999-01-09 17:51:44 +08:00
AC_CHECK_HEADERS(math.h)
AC_CHECK_LIBM
AC_SUBST(LIBM)
1998-11-25 04:32:39 +08:00
dnl Output the makefile
1999-03-14 01:41:49 +08:00
AC_OUTPUT(
Makefile
l1/Makefile
l2/Makefile
l3/Makefile
l4/Makefile
)