mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-11-21 01:40:57 +08:00
ad4654e94a
recognize it and fail, better keep using AM_PROG_LIBTOOL until the next release of automake * demo/configure.in, cdemo/configure.in: ditto * depdemo/configure.in, mdemo/configure.in: ditto
16 lines
259 B
Plaintext
16 lines
259 B
Plaintext
dnl Initialize the depdemo package.
|
|
AC_INIT(main.c)
|
|
AM_INIT_AUTOMAKE(depdemo,0.1)
|
|
|
|
AC_PROG_CC
|
|
AC_EXEEXT
|
|
AM_PROG_LIBTOOL
|
|
|
|
AC_CHECK_HEADERS(math.h)
|
|
|
|
AC_CHECK_LIB(m, cos, LIBADD_M="-lm", LIBADD_M=)
|
|
AC_SUBST(LIBADD_M)
|
|
|
|
dnl Output the makefile
|
|
AC_OUTPUT(Makefile)
|