COIN-OR::LEMON - Graph Library

Changes in / [312:a4d499904482:311:c887e703b566] in lemon-main


Ignore:
Files:
2 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    r310 r227  
    2525bin_PROGRAMS =
    2626check_PROGRAMS =
    27 dist_bin_SCRIPTS =
    2827TESTS =
    2928XFAIL_TESTS =
     
    3332include doc/Makefile.am
    3433include demo/Makefile.am
     34include benchmark/Makefile.am
    3535include tools/Makefile.am
    3636
  • README

    r310 r246  
    3838   Contains programs to check the integrity and correctness of LEMON.
    3939
     40benchmark/
     41 
     42   Contains programs for measuring the performance of algorithms.
     43
    4044tools/
    4145
  • configure.ac

    r310 r296  
    8282AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"])
    8383
     84dnl Disable/enable building the benchmarks.
     85AC_ARG_ENABLE([benchmark],
     86AS_HELP_STRING([--enable-benchmark], [build the benchmarks])
     87AS_HELP_STRING([--disable-benchmark], [do not build the benchmarks @<:@default@:>@]),
     88              [], [enable_benchmark=no])
     89AC_MSG_CHECKING([whether to build the benchmarks])
     90if test x"$enable_benchmark" != x"no"; then
     91  AC_MSG_RESULT([yes])
     92else
     93  AC_MSG_RESULT([no])
     94fi
     95AM_CONDITIONAL([WANT_BENCHMARK], [test x"$enable_benchmark" != x"no"])
     96
    8497dnl Checks for header files.
    8598AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h)
     
    120133#echo SOPLEX support................ : $lx_soplex_found
    121134#echo
     135echo Build benchmarks.............. : $enable_benchmark
    122136echo Build demo programs........... : $enable_demo
    123137echo Build additional tools........ : $enable_tools
  • tools/Makefile.am

    r310 r146  
    22
    33bin_PROGRAMS +=
    4 dist_bin_SCRIPTS += tools/lemon-0.x-to-1.x.sh
    54
    65endif WANT_TOOLS
Note: See TracChangeset for help on using the changeset viewer.