# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) AC_INIT([Tachyon], [1.0], [arjen@androemda.nl]) AM_INIT_AUTOMAKE([-Wall foreign]) AC_CONFIG_MACRO_DIRS([m4]) AC_CONFIG_SRCDIR([src/Tachyon.h]) AC_CONFIG_HEADERS([config.h]) # Checks for programs. AC_PROG_CXX AC_PROG_CC AM_PROG_AR # Checks for libraries. # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. LT_INIT AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile test/Makefile]) AC_OUTPUT