COIN-OR::LEMON - Graph Library

source: lemon-0.x/configure.ac @ 678:a6bfd3346245

Last change on this file since 678:a6bfd3346245 was 542:69bde1d90c04, checked in by Akos Ladanyi, 20 years ago

Set up automake environment.

File size: 695 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2AC_INIT([HugoLib], [0.1], [etik-ol@cs.elte.hu], [hugo])
3AC_CONFIG_AUX_DIR([config])
4AM_INIT_AUTOMAKE(1.7)
5AC_CONFIG_SRCDIR([src/hugo/invalid.h])
6AC_PREREQ(2.57)
7
8dnl Checks for programs.
9AC_PROG_CC
10AC_PROG_CXX
11
12dnl Checks for libraries.
13
14dnl Checks for header files.
15AC_CHECK_HEADERS(limits.h sys/time.h unistd.h)
16
17dnl Checks for typedefs, structures, and compiler characteristics.
18AC_C_CONST
19AC_C_INLINE
20AC_TYPE_SIZE_T
21AC_HEADER_TIME
22AC_STRUCT_TM
23
24dnl Checks for library functions.
25AC_HEADER_STDC
26AC_CHECK_FUNCS(gettimeofday)
27
28AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile src/hugo/Makefile src/test/Makefile])
29AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.