From 86315eee08beea75d92eb506d46de4d357ec659a Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Wed, 11 Jun 2008 03:30:59 +0200 Subject: Build-Infrastruktur erstellt --- configure.ac | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..ad5e36c --- /dev/null +++ b/configure.ac @@ -0,0 +1,32 @@ +# -*- 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 + -- cgit v1.2.3