Develop and Download Open Source Software

Browse CVS Repository

Annotation of /autocoast/src/configure.ac

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (hide annotations) (download)
Sat Nov 13 08:43:17 2004 UTC (19 years, 5 months ago) by tmurakam
Branch: MAIN
CVS Tags: v0_3, v0_2, HEAD
Changes since 1.2: +1 -0 lines
misc fix

1 tmurakam 1.1 AC_INIT(src)
2 tmurakam 1.3 AC_CONFIG_AUX_DIR(config)
3 tmurakam 1.1
4     AC_CANONICAL_HOST
5     AM_CONFIG_HEADER(config.h)
6     AM_INIT_AUTOMAKE(AutoCoast, 0.0.1, no-define)
7    
8     AC_PROG_CC
9     AC_PROG_CXX
10     AC_PROG_RANLIB
11     AC_ARG_PROGRAM
12    
13     AC_HEADER_STDC
14    
15     AC_C_CONST
16     AC_C_INLINE
17     AC_TYPE_SIZE_T
18    
19 tmurakam 1.2 AC_MSG_CHECKING(if --enable-debug option is specified)
20     AC_ARG_ENABLE(debug,
21     [ --enable-debug Build a debugging version.],
22     [], [enableval="no"])
23     changequote(<<, >>)dnl
24     if test "$enableval" = "yes"; then
25     CFLAGS="-g -DDEBUG $CFLAGS"
26     CFLAGS=`echo $CFLAGS | sed 's/-O[0-9]*//'`
27     CXXFLAGS="-g -DDEBUG $CXXFLAGS"
28     CXXFLAGS=`echo $CXXFLAGS | sed 's/-O[0-9]*//'`
29     fi
30     changequote([, ])dnl
31     AC_MSG_RESULT($enableval)
32    
33 tmurakam 1.1 AC_OUTPUT(Makefile gpc/Makefile lib/Makefile src/Makefile)
34    
35    

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26