source: trunk/configure.ac @ 21

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

Added bin directory.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 861 bytes
Line 
1# Process this file with autoconf to produce a configure script.
2#
3# $Id: configure.ac 21 2005-12-30 23:20:00Z 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
27CXXFLAGS="-g -O -Wall -pedantic"
28CPPFLAGS="-DHAVE_INLINE=1"
29# Use these flags when compiling a production library
30#CXXFLAGS="-O3 -Wall -pedantic"
31#CPPFLAGS="-DNDEBUG -DGSL_RANGE_CHECK_OFF -DHAVE_INLINE=1"
32
33AC_CONFIG_FILES([Makefile
34                bin/Makefile
35                lib/Makefile
36                test/Makefile])
37
38AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.