summaryrefslogtreecommitdiffstats
path: root/configure.ac
blob: f13157ec5733b024e1619afdaf8cc305f0dd96ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#                                               -*- 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/mad.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
  src/Net/Makefile
])

AC_OUTPUT