Develop and Download Open Source Software

Browse CVS Repository

Contents of /autocoast/src/configure.ac

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


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

1 AC_INIT(src)
2 AC_CONFIG_AUX_DIR(config)
3
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 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 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