dnl Process this file with autoconf to produce a configure script. AC_INIT(lib/neuron.cc) AM_INIT_AUTOMAKE(libneural, 1.0.3) AC_PROG_MAKE_SET dnl Checks for programs. AC_PROG_CXX AC_PROG_CC AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_RANLIB AM_PROG_LIBTOOL AC_ARG_PROGRAM dnl Checks for libraries. dnl Replace `main' with a function in -lm: AC_CHECK_LIB(m, fabs) dnl Replace `main' with a function in -lneural: AC_CHECK_LIB(neural, sigmoid) dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS(limits.h) dnl Checks for typedefs, structures, and compiler characteristics. dnl Checks for library functions. AC_OUTPUT(include/Makefile examples/Makefile lib/Makefile Makefile)