You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
363 B
14 lines
363 B
dnl Process this file with autoconf to produce a configure script |
|
AC_INIT(fdlibm,5.3,[FDLIBM COMMENTS <fdlibm-comments AT sun.com>]) |
|
AC_CONFIG_SRCDIR(e_acos.c) |
|
|
|
dnl Checks for programs |
|
AC_PROG_CC |
|
|
|
AC_CHECK_PROGS(AR, ar) |
|
AC_CHECK_PROGS(CHMOD, chmod) |
|
AC_CHECK_PROGS(CP, cp) |
|
AC_CHECK_PROGS(RANLIB, [ranlib echo]) |
|
AC_PATH_PROGS(RM, [/bin/rm rm]) |
|
|
|
AC_OUTPUT(Makefile)
|
|
|