lemon/Makefile.am
author Alpar Juttner <alpar@cs.elte.hu>
Fri, 06 Jan 2012 16:27:06 +0100
changeset 973 ee581a0ecfbf
parent 959 17e36e175725
parent 513 17cabb114d52
child 964 2b6bffe0e7e8
permissions -rw-r--r--
Make CBC interface compatible with latest CBC releases

CBC now uses the CLP backend unconditionally
ladanyi@1
     1
EXTRA_DIST += \
ladanyi@146
     2
	lemon/lemon.pc.in \
alpar@953
     3
	lemon/lemon.pc.cmake \
alpar@667
     4
	lemon/CMakeLists.txt \
alpar@667
     5
	lemon/config.h.cmake
ladanyi@1
     6
ladanyi@1
     7
pkgconfig_DATA += lemon/lemon.pc
ladanyi@1
     8
ladanyi@1
     9
lib_LTLIBRARIES += lemon/libemon.la
ladanyi@1
    10
alpar@7
    11
lemon_libemon_la_SOURCES = \
alpar@440
    12
	lemon/arg_parser.cc \
alpar@440
    13
	lemon/base.cc \
alpar@440
    14
	lemon/color.cc \
deba@458
    15
	lemon/lp_base.cc \
deba@458
    16
	lemon/lp_skeleton.cc \
deba@567
    17
	lemon/random.cc \
alpar@491
    18
	lemon/bits/windows.cc
alpar@10
    19
alpar@639
    20
nodist_lemon_HEADERS = lemon/config.h	
deba@458
    21
deba@458
    22
lemon_libemon_la_CXXFLAGS = \
alpar@550
    23
	$(AM_CXXFLAGS) \
deba@458
    24
	$(GLPK_CFLAGS) \
deba@458
    25
	$(CPLEX_CFLAGS) \
deba@459
    26
	$(SOPLEX_CXXFLAGS) \
deba@567
    27
	$(CLP_CXXFLAGS) \
deba@567
    28
	$(CBC_CXXFLAGS)
deba@458
    29
deba@458
    30
lemon_libemon_la_LDFLAGS = \
deba@458
    31
	$(GLPK_LIBS) \
deba@458
    32
	$(CPLEX_LIBS) \
deba@459
    33
	$(SOPLEX_LIBS) \
deba@567
    34
	$(CLP_LIBS) \
deba@567
    35
	$(CBC_LIBS)
deba@458
    36
deba@458
    37
if HAVE_GLPK
alpar@461
    38
lemon_libemon_la_SOURCES += lemon/glpk.cc
deba@458
    39
endif
deba@458
    40
deba@458
    41
if HAVE_CPLEX
alpar@461
    42
lemon_libemon_la_SOURCES += lemon/cplex.cc
deba@458
    43
endif
deba@458
    44
deba@458
    45
if HAVE_SOPLEX
alpar@461
    46
lemon_libemon_la_SOURCES += lemon/soplex.cc
deba@458
    47
endif
ladanyi@1
    48
deba@459
    49
if HAVE_CLP
alpar@461
    50
lemon_libemon_la_SOURCES += lemon/clp.cc
deba@459
    51
endif
alpar@418
    52
deba@567
    53
if HAVE_CBC
deba@567
    54
lemon_libemon_la_SOURCES += lemon/cbc.cc
deba@459
    55
endif
deba@459
    56
alpar@2
    57
lemon_HEADERS += \
deba@416
    58
	lemon/adaptors.h \
alpar@440
    59
	lemon/arg_parser.h \
deba@108
    60
	lemon/assert.h \
alpar@440
    61
	lemon/bfs.h \
alpar@440
    62
	lemon/bin_heap.h \
deba@681
    63
	lemon/bucket_heap.h \
ladanyi@630
    64
	lemon/cbc.h \
alpar@440
    65
	lemon/circulation.h \
alpar@461
    66
	lemon/clp.h \
alpar@440
    67
	lemon/color.h \
alpar@166
    68
	lemon/concept_check.h \
ladanyi@522
    69
	lemon/connectivity.h \
alpar@440
    70
	lemon/counter.h \
deba@220
    71
	lemon/core.h \
alpar@461
    72
	lemon/cplex.h \
alpar@440
    73
	lemon/dfs.h \
alpar@440
    74
	lemon/dijkstra.h \
alpar@440
    75
	lemon/dim2.h \
alpar@440
    76
	lemon/dimacs.h \
deba@468
    77
	lemon/edge_set.h \
alpar@379
    78
	lemon/elevator.h \
kpeter@66
    79
	lemon/error.h \
alpar@520
    80
	lemon/euler.h \
deba@681
    81
	lemon/fib_heap.h \
deba@353
    82
	lemon/full_graph.h \
alpar@461
    83
	lemon/glpk.h \
alpar@545
    84
	lemon/gomory_hu.h \
alpar@440
    85
	lemon/graph_to_eps.h \
alpar@440
    86
	lemon/grid_graph.h \
kpeter@364
    87
	lemon/hypercube_graph.h \
alpar@103
    88
	lemon/kruskal.h \
deba@409
    89
	lemon/hao_orlin.h \
deba@127
    90
	lemon/lgf_reader.h \
kpeter@195
    91
	lemon/lgf_writer.h \
kpeter@66
    92
	lemon/list_graph.h \
deba@458
    93
	lemon/lp.h \
deba@458
    94
	lemon/lp_base.h \
deba@458
    95
	lemon/lp_skeleton.h \
alpar@58
    96
	lemon/maps.h \
kpeter@594
    97
	lemon/matching.h \
alpar@68
    98
	lemon/math.h \
deba@501
    99
	lemon/min_cost_arborescence.h \
deba@348
   100
	lemon/nauty_reader.h \
kpeter@601
   101
	lemon/network_simplex.h \
alpar@96
   102
	lemon/path.h \
alpar@389
   103
	lemon/preflow.h \
deba@681
   104
	lemon/radix_heap.h \
deba@441
   105
	lemon/radix_sort.h \
alpar@440
   106
	lemon/random.h \
deba@109
   107
	lemon/smart_graph.h \
alpar@461
   108
	lemon/soplex.h \
alpar@345
   109
	lemon/suurballe.h \
alpar@440
   110
	lemon/time_measure.h \
alpar@440
   111
	lemon/tolerance.h \
alpar@491
   112
	lemon/unionfind.h \
alpar@491
   113
	lemon/bits/windows.h
ladanyi@1
   114
alpar@7
   115
bits_HEADERS += \
deba@57
   116
	lemon/bits/alteration_notifier.h \
deba@57
   117
	lemon/bits/array_map.h \
alpar@440
   118
	lemon/bits/bezier.h \
deba@57
   119
	lemon/bits/default_map.h \
deba@468
   120
	lemon/bits/edge_set_extender.h \
alpar@440
   121
	lemon/bits/enable_if.h \
deba@414
   122
	lemon/bits/graph_adaptor_extender.h \
alpar@58
   123
	lemon/bits/graph_extender.h \
deba@57
   124
	lemon/bits/map_extender.h \
alpar@100
   125
	lemon/bits/path_dump.h \
deba@459
   126
	lemon/bits/solver_bits.h \
alpar@58
   127
	lemon/bits/traits.h \
deba@414
   128
	lemon/bits/variant.h \
deba@57
   129
	lemon/bits/vector_map.h
ladanyi@1
   130
alpar@58
   131
concept_HEADERS += \
deba@57
   132
	lemon/concepts/digraph.h \
deba@57
   133
	lemon/concepts/graph.h \
kpeter@195
   134
	lemon/concepts/graph_components.h \
alpar@100
   135
	lemon/concepts/heap.h \
alpar@58
   136
	lemon/concepts/maps.h \
kpeter@195
   137
	lemon/concepts/path.h