# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.50) AC_INIT(rast-examples, 0.0.0) AM_INIT_AUTOMAKE # Checks for programs. AC_PROG_CC # Checks for header files. AC_HEADER_STDC # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST # Checks for library functions. AC_CHECK_FUNCS([atexit]) AM_PATH_RAST(0, 0, 0) CFLAGS="$CFLAGS $RAST_CFLAGS $RAST_INCLUDES" CPPFLAGS="$CPPFLAGS $RAST_CPPFLAGS" LDFLAGS="$LDFLAGS $RAST_LDFLAGS" LIBS="$LIBS $RAST_LIBS_LD" AC_CONFIG_FILES([Makefile]) AC_OUTPUT