source: trunk/configure.ac @ 8

Last change on this file since 8 was 8, checked in by Jari Häkkinen, 18 years ago

Working build system.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 844 bytes
Line 
1# Process this file with autoconf to produce a configure script.
2#
3# $Id: configure.ac 8 2005-12-30 07:09:36Z jari $
4#
5# Author: Jari Hakkinen, jari@thep.lu.se
6#
7# If you grabbed the source from subversion you should, at top-level,
8# execute:
9#   ./bootstrap
10#
11
12AC_PREREQ(2.57)
13AC_INIT([[svnstat]],[0.1],[jari@thep.lu.se])
14AC_CONFIG_SRCDIR([lib/File.h])
15AC_CONFIG_AUX_DIR([autotools])
16AC_PREFIX_DEFAULT([/usr/local])
17
18AM_CONFIG_HEADER([config.h])
19AM_INIT_AUTOMAKE($PACKAGE_NAME,$PACKAGE_VERSION,$PACKAGE_BUGREPORT)
20
21# Checks for programs.
22AC_PROG_CPP
23AC_PROG_CXX
24AC_PROG_INSTALL
25AC_PROG_RANLIB
26
27#CXXFLAGS="-g -O -Wall -pedantic"
28#CPPFLAGS="-DHAVE_INLINE=1"
29# Use these flags when compiling a production library
30CXXFLAGS="-O3 -Wall -pedantic"
31CPPFLAGS="-DNDEBUG -DGSL_RANGE_CHECK_OFF -DHAVE_INLINE=1"
32
33AC_CONFIG_FILES([Makefile
34                 lib/Makefile
35     test/Makefile])
36
37AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.