2
4
1
1
1
4
14
bin
bin
| ... | ... |
@@ -19,24 +19,24 @@ |
| 19 | 19 |
lib_LTLIBRARIES = |
| 20 | 20 |
lemon_HEADERS = |
| 21 | 21 |
bits_HEADERS = |
| 22 | 22 |
concept_HEADERS = |
| 23 | 23 |
noinst_HEADERS = |
| 24 | 24 |
noinst_PROGRAMS = |
| 25 | 25 |
bin_PROGRAMS = |
| 26 | 26 |
check_PROGRAMS = |
| 27 |
dist_bin_SCRIPTS = |
|
| 27 | 28 |
TESTS = |
| 28 | 29 |
XFAIL_TESTS = |
| 29 | 30 |
|
| 30 | 31 |
include lemon/Makefile.am |
| 31 | 32 |
include test/Makefile.am |
| 32 | 33 |
include doc/Makefile.am |
| 33 | 34 |
include demo/Makefile.am |
| 34 |
include benchmark/Makefile.am |
|
| 35 | 35 |
include tools/Makefile.am |
| 36 | 36 |
|
| 37 | 37 |
MRPROPERFILES = \ |
| 38 | 38 |
aclocal.m4 \ |
| 39 | 39 |
config.h.in \ |
| 40 | 40 |
config.h.in~ \ |
| 41 | 41 |
configure \ |
| 42 | 42 |
Makefile.in \ |
| ... | ... |
@@ -32,15 +32,11 @@ |
| 32 | 32 |
demo/ |
| 33 | 33 |
|
| 34 | 34 |
Some example programs to make you easier to get familiar with LEMON. |
| 35 | 35 |
|
| 36 | 36 |
test/ |
| 37 | 37 |
|
| 38 | 38 |
Contains programs to check the integrity and correctness of LEMON. |
| 39 | 39 |
|
| 40 |
benchmark/ |
|
| 41 |
|
|
| 42 |
Contains programs for measuring the performance of algorithms. |
|
| 43 |
|
|
| 44 | 40 |
tools/ |
| 45 | 41 |
|
| 46 | 42 |
Various utilities related to LEMON. |
| ... | ... |
@@ -76,29 +76,16 @@ |
| 76 | 76 |
AC_MSG_CHECKING([whether to build the additional tools]) |
| 77 | 77 |
if test x"$enable_tools" != x"no"; then |
| 78 | 78 |
AC_MSG_RESULT([yes]) |
| 79 | 79 |
else |
| 80 | 80 |
AC_MSG_RESULT([no]) |
| 81 | 81 |
fi |
| 82 | 82 |
AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"]) |
| 83 | 83 |
|
| 84 |
dnl Disable/enable building the benchmarks. |
|
| 85 |
AC_ARG_ENABLE([benchmark], |
|
| 86 |
AS_HELP_STRING([--enable-benchmark], [build the benchmarks]) |
|
| 87 |
AS_HELP_STRING([--disable-benchmark], [do not build the benchmarks @<:@default@:>@]), |
|
| 88 |
[], [enable_benchmark=no]) |
|
| 89 |
AC_MSG_CHECKING([whether to build the benchmarks]) |
|
| 90 |
if test x"$enable_benchmark" != x"no"; then |
|
| 91 |
AC_MSG_RESULT([yes]) |
|
| 92 |
else |
|
| 93 |
AC_MSG_RESULT([no]) |
|
| 94 |
fi |
|
| 95 |
AM_CONDITIONAL([WANT_BENCHMARK], [test x"$enable_benchmark" != x"no"]) |
|
| 96 |
|
|
| 97 | 84 |
dnl Checks for header files. |
| 98 | 85 |
AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h) |
| 99 | 86 |
|
| 100 | 87 |
dnl Checks for typedefs, structures, and compiler characteristics. |
| 101 | 88 |
AC_C_CONST |
| 102 | 89 |
AC_C_INLINE |
| 103 | 90 |
AC_TYPE_SIZE_T |
| 104 | 91 |
AC_HEADER_TIME |
| ... | ... |
@@ -127,17 +114,16 @@ |
| 127 | 114 |
echo |
| 128 | 115 |
echo C++ compiler.................. : $CXX |
| 129 | 116 |
echo C++ compiles flags............ : $CXXFLAGS |
| 130 | 117 |
echo |
| 131 | 118 |
#echo GLPK support.................. : $lx_glpk_found |
| 132 | 119 |
#echo CPLEX support................. : $lx_cplex_found |
| 133 | 120 |
#echo SOPLEX support................ : $lx_soplex_found |
| 134 | 121 |
#echo |
| 135 |
echo Build benchmarks.............. : $enable_benchmark |
|
| 136 | 122 |
echo Build demo programs........... : $enable_demo |
| 137 | 123 |
echo Build additional tools........ : $enable_tools |
| 138 | 124 |
echo |
| 139 | 125 |
echo The packace will be installed in |
| 140 | 126 |
echo -n ' ' |
| 141 | 127 |
echo $prefix. |
| 142 | 128 |
echo |
| 143 | 129 |
echo '*********************************************************************' |
0 comments (0 inline)