2
4
1
1
1
4
14
bin
bin
1 | 1 |
ACLOCAL_AMFLAGS = -I m4 |
2 | 2 |
|
3 | 3 |
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) |
4 | 4 |
LDADD = $(top_builddir)/lemon/libemon.la |
5 | 5 |
|
6 | 6 |
EXTRA_DIST = \ |
7 | 7 |
LICENSE \ |
8 | 8 |
m4/lx_check_cplex.m4 \ |
9 | 9 |
m4/lx_check_glpk.m4 \ |
10 | 10 |
m4/lx_check_soplex.m4 \ |
11 | 11 |
CMakeLists.txt \ |
12 | 12 |
cmake |
13 | 13 |
|
14 | 14 |
pkgconfigdir = $(libdir)/pkgconfig |
15 | 15 |
lemondir = $(pkgincludedir) |
16 | 16 |
bitsdir = $(lemondir)/bits |
17 | 17 |
conceptdir = $(lemondir)/concepts |
18 | 18 |
pkgconfig_DATA = |
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 \ |
43 | 43 |
build-aux/config.guess \ |
44 | 44 |
build-aux/config.sub \ |
45 | 45 |
build-aux/depcomp \ |
46 | 46 |
build-aux/install-sh \ |
47 | 47 |
build-aux/ltmain.sh \ |
48 | 48 |
build-aux/missing \ |
49 | 49 |
doc/doxygen.log |
50 | 50 |
|
51 | 51 |
mrproper: |
52 | 52 |
$(MAKE) $(AM_MAKEFLAGS) maintainer-clean |
53 | 53 |
-rm -f $(MRPROPERFILES) |
54 | 54 |
|
55 | 55 |
dist-bz2: dist |
56 | 56 |
zcat $(PACKAGE)-$(VERSION).tar.gz | \ |
57 | 57 |
bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2 |
58 | 58 |
|
59 | 59 |
distcheck-bz2: distcheck |
60 | 60 |
zcat $(PACKAGE)-$(VERSION).tar.gz | \ |
61 | 61 |
bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2 |
62 | 62 |
|
63 | 63 |
.PHONY: mrproper dist-bz2 distcheck-bz2 |
1 | 1 |
================================================================== |
2 | 2 |
LEMON - a Library of Efficient Models and Optimization in Networks |
3 | 3 |
================================================================== |
4 | 4 |
|
5 | 5 |
LEMON is an open source library written in C++. It provides |
6 | 6 |
easy-to-use implementations of common data structures and algorithms |
7 | 7 |
in the area of optimization and helps implementing new ones. The main |
8 | 8 |
focus is on graphs and graph algorithms, thus it is especially |
9 | 9 |
suitable for solving design and optimization problems of |
10 | 10 |
telecommunication networks. To achieve wide usability its data |
11 | 11 |
structures and algorithms provide generic interfaces. |
12 | 12 |
|
13 | 13 |
Contents |
14 | 14 |
======== |
15 | 15 |
|
16 | 16 |
LICENSE |
17 | 17 |
|
18 | 18 |
Copying, distribution and modification conditions and terms. |
19 | 19 |
|
20 | 20 |
INSTALL |
21 | 21 |
|
22 | 22 |
General building and installation instructions. |
23 | 23 |
|
24 | 24 |
lemon/ |
25 | 25 |
|
26 | 26 |
Source code of LEMON library. |
27 | 27 |
|
28 | 28 |
doc/ |
29 | 29 |
|
30 | 30 |
Documentation of LEMON. The starting page is doc/html/index.html. |
31 | 31 |
|
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. |
... | ... |
@@ -36,112 +36,98 @@ |
36 | 36 |
|
37 | 37 |
dnl Detect Intel compiler. |
38 | 38 |
AC_MSG_CHECKING([whether we are using the Intel C++ compiler]) |
39 | 39 |
AC_COMPILE_IFELSE([#ifndef __INTEL_COMPILER |
40 | 40 |
choke me |
41 | 41 |
#endif], [ICC=[yes]], [ICC=[no]]) |
42 | 42 |
if test x"$ICC" = x"yes"; then |
43 | 43 |
AC_MSG_RESULT([yes]) |
44 | 44 |
else |
45 | 45 |
AC_MSG_RESULT([no]) |
46 | 46 |
fi |
47 | 47 |
|
48 | 48 |
dnl Set custom compiler flags when using g++. |
49 | 49 |
if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes -a "$ICC" = no; then |
50 | 50 |
CXXFLAGS="$CXXFLAGS -Wall -W -Wall -W -Wunused -Wformat=2 -Wctor-dtor-privacy -Wnon-virtual-dtor -Wno-char-subscripts -Wwrite-strings -Wno-char-subscripts -Wreturn-type -Wcast-qual -Wcast-align -Wsign-promo -Woverloaded-virtual -Woverloaded-virtual -ansi -fno-strict-aliasing -Wold-style-cast -Wno-unknown-pragmas" |
51 | 51 |
fi |
52 | 52 |
|
53 | 53 |
dnl Checks for libraries. |
54 | 54 |
#LX_CHECK_GLPK |
55 | 55 |
#LX_CHECK_CPLEX |
56 | 56 |
#LX_CHECK_SOPLEX |
57 | 57 |
|
58 | 58 |
dnl Disable/enable building the demo programs. |
59 | 59 |
AC_ARG_ENABLE([demo], |
60 | 60 |
AS_HELP_STRING([--enable-demo], [build the demo programs]) |
61 | 61 |
AS_HELP_STRING([--disable-demo], [do not build the demo programs @<:@default@:>@]), |
62 | 62 |
[], [enable_demo=no]) |
63 | 63 |
AC_MSG_CHECKING([whether to build the demo programs]) |
64 | 64 |
if test x"$enable_demo" != x"no"; then |
65 | 65 |
AC_MSG_RESULT([yes]) |
66 | 66 |
else |
67 | 67 |
AC_MSG_RESULT([no]) |
68 | 68 |
fi |
69 | 69 |
AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"]) |
70 | 70 |
|
71 | 71 |
dnl Disable/enable building the binary tools. |
72 | 72 |
AC_ARG_ENABLE([tools], |
73 | 73 |
AS_HELP_STRING([--enable-tools], [build additional tools @<:@default@:>@]) |
74 | 74 |
AS_HELP_STRING([--disable-tools], [do not build additional tools]), |
75 | 75 |
[], [enable_tools=yes]) |
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 |
105 | 92 |
AC_STRUCT_TM |
106 | 93 |
|
107 | 94 |
dnl Checks for library functions. |
108 | 95 |
AC_HEADER_STDC |
109 | 96 |
AC_CHECK_FUNCS(gettimeofday times ctime_r) |
110 | 97 |
|
111 | 98 |
dnl Add dependencies on files generated by configure. |
112 | 99 |
AC_SUBST([CONFIG_STATUS_DEPENDENCIES], |
113 | 100 |
['$(top_srcdir)/doc/Doxyfile.in $(top_srcdir)/lemon/lemon.pc.in']) |
114 | 101 |
|
115 | 102 |
AC_CONFIG_FILES([ |
116 | 103 |
Makefile |
117 | 104 |
doc/Doxyfile |
118 | 105 |
lemon/lemon.pc |
119 | 106 |
]) |
120 | 107 |
|
121 | 108 |
AC_OUTPUT |
122 | 109 |
|
123 | 110 |
echo |
124 | 111 |
echo '****************************** SUMMARY ******************************' |
125 | 112 |
echo |
126 | 113 |
echo Package version............... : $PACKAGE-$VERSION |
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 '*********************************************************************' |
144 | 130 |
|
145 | 131 |
echo |
146 | 132 |
echo Configure complete, now type \'make\' and then \'make install\'. |
147 | 133 |
echo |
0 comments (0 inline)