Bugfix: accelleration is divided twice
[Tachyon.git] / configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ([2.69])
5 AC_INIT([Tachyon], [1.0], [arjen@androemda.nl])
6 AM_INIT_AUTOMAKE([-Wall foreign])
7 AC_CONFIG_MACRO_DIRS([m4])
8
9 AC_CONFIG_SRCDIR([src/Tachyon.h])
10 AC_CONFIG_HEADERS([config.h])
11
12 # Checks for programs.
13 AC_PROG_CXX
14 AC_PROG_CC
15 AM_PROG_AR
16
17
18 # Checks for libraries.
19
20 # Checks for header files.
21
22 # Checks for typedefs, structures, and compiler characteristics.
23
24 # Checks for library functions.
25
26 LT_INIT
27
28 AC_CONFIG_FILES([Makefile
29                  doc/Makefile
30                  src/Makefile
31                  test/Makefile])
32 AC_OUTPUT