# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) AC_INIT(mad, 0.1, matthias@gamezock.de) AC_CONFIG_SRCDIR([src/madc.cpp]) AM_CONFIG_HEADER([src/config.h]) AM_INIT_AUTOMAKE(mad, 0.1) AM_MAINTAINER_MODE AC_DISABLE_STATIC # Checks for programs. AC_PROG_CXX AM_PROG_CC_C_O AC_PROG_LIBTOOL # Checks for libraries. # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. AC_CONFIG_FILES([ Makefile src/Makefile ]) AC_OUTPUT