12345678910111213141516171819202122232425262728293031323334 |
- # -*- Autoconf -*-
- # Process this file with autoconf to produce a configure script.
- AC_PREREQ([2.69])
- AC_INIT([uncc], [1.0], [mooigraph@gmail.com])
- AC_CONFIG_SRCDIR([src/main.c])
- AC_CONFIG_HEADERS([config.h])
- AM_INIT_AUTOMAKE
- CFLAGS="$CFLAGS -Wall -Wextra -pedantic"
- # Checks for programs.
- AC_PROG_CC
- AC_PROG_MAKE_SET
- # Checks for libraries.
- # FIXME: Replace `main' with a function in `-lm':
- AC_CHECK_LIB([m], [main])
- # Checks for header files.
- # Checks for typedefs, structures, and compiler characteristics.
- # Checks for library functions.
- # final compiler settings
- AC_SUBST(PACKAGE_CFLAGS)
- AC_SUBST(WARNING_CFLAGS)
- AC_CONFIG_FILES([Makefile
- src/Makefile])
- AC_OUTPUT
|