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 | |
---|
12 | AC_PREREQ(2.57) |
---|
13 | AC_INIT([[svnstat]],[0.1],[jari@thep.lu.se]) |
---|
14 | AC_CONFIG_SRCDIR([lib/File.h]) |
---|
15 | AC_CONFIG_AUX_DIR([autotools]) |
---|
16 | AC_PREFIX_DEFAULT([/usr/local]) |
---|
17 | |
---|
18 | AM_CONFIG_HEADER([config.h]) |
---|
19 | AM_INIT_AUTOMAKE($PACKAGE_NAME,$PACKAGE_VERSION,$PACKAGE_BUGREPORT) |
---|
20 | |
---|
21 | # Checks for programs. |
---|
22 | AC_PROG_CPP |
---|
23 | AC_PROG_CXX |
---|
24 | AC_PROG_INSTALL |
---|
25 | AC_PROG_RANLIB |
---|
26 | |
---|
27 | #CXXFLAGS="-g -O -Wall -pedantic" |
---|
28 | #CPPFLAGS="-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 | |
---|
33 | AC_CONFIG_FILES([Makefile |
---|
34 | lib/Makefile |
---|
35 | test/Makefile]) |
---|
36 | |
---|
37 | AC_OUTPUT |
---|
Note: See
TracBrowser
for help on using the repository browser.