dnl Process this file with autoconf to produce a configure script. AC_INIT(match.c) AM_INIT_AUTOMAKE(match,0.8) dnl Checks for programs. AC_PROG_AWK AC_PROG_CC AC_PROG_INSTALL AC_PROG_LN_S dnl Checks for libraries. AC_CHECK_LIB(m, sqrt) AC_CHECK_LIB(m, floor) dnl Checks for header files. AC_HEADER_STDC dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST dnl Checks for library functions. AC_FUNC_VPRINTF AC_OUTPUT(Makefile)