configure.ac
author ladanyi
Tue, 05 Apr 2005 22:37:19 +0000
changeset 1308 0274efa2222f
parent 1171 f426c84a4e00
child 1327 ecc1cdea2ee7
permissions -rw-r--r--
Applied the changes which somehow vanished during my last merge. Thanks goes
to Marci for noticing this. In detail:
- added amsmath and amssymb latex packages for latex documentation
- src/demo is also scanned for doxygen input files
     1 dnl Process this file with autoconf to produce a configure script.
     2 AC_INIT([LEMON], [0.4], [etik-ol@cs.elte.hu], [lemon])
     3 AC_CONFIG_AUX_DIR([config])
     4 AM_INIT_AUTOMAKE(1.7)
     5 AC_CONFIG_SRCDIR([src/lemon/invalid.h])
     6 AC_PREREQ(2.57)
     7 
     8 dnl Checks for programs.
     9 AC_PROG_CXX
    10 AC_PROG_INSTALL
    11 AC_PROG_LIBTOOL
    12 
    13 CXXFLAGS="$CXXFLAGS -Wall"
    14 
    15 dnl Checks for libraries.
    16 
    17 dnl Checks for header files.
    18 AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h)
    19 
    20 dnl Checks for typedefs, structures, and compiler characteristics.
    21 AC_C_CONST
    22 AC_C_INLINE
    23 AC_TYPE_SIZE_T
    24 AC_HEADER_TIME
    25 AC_STRUCT_TM
    26 
    27 dnl Checks for library functions.
    28 AC_HEADER_STDC
    29 AC_CHECK_FUNCS(gettimeofday times ctime_r)
    30 
    31 AC_CONFIG_FILES([
    32 Makefile
    33 autopackage/default.apspec
    34 doc/Makefile
    35 doc/Doxyfile
    36 src/Makefile
    37 src/lemon/Makefile
    38 src/lemon/lemon.pc
    39 src/benchmark/Makefile
    40 src/demo/Makefile
    41 src/test/Makefile
    42 ])
    43 AC_OUTPUT