mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-12-21 06:59:11 +08:00
16 lines
255 B
Plaintext
16 lines
255 B
Plaintext
dnl Initialize the cdemo package.
|
|
AC_INIT(main.c)
|
|
AM_INIT_AUTOMAKE(cdemo,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)
|