1 EXTRA_DIST += \ |
|
2 lemon/lemon.pc.in \ |
|
3 lemon/lemon.pc.cmake \ |
|
4 lemon/CMakeLists.txt \ |
|
5 lemon/config.h.cmake |
|
6 |
|
7 pkgconfig_DATA += lemon/lemon.pc |
|
8 |
|
9 lib_LTLIBRARIES += lemon/libemon.la |
|
10 |
|
11 lemon_libemon_la_SOURCES = \ |
|
12 lemon/arg_parser.cc \ |
|
13 lemon/base.cc \ |
|
14 lemon/color.cc \ |
|
15 lemon/lp_base.cc \ |
|
16 lemon/lp_skeleton.cc \ |
|
17 lemon/random.cc \ |
|
18 lemon/bits/windows.cc |
|
19 |
|
20 nodist_lemon_HEADERS = lemon/config.h |
|
21 |
|
22 lemon_libemon_la_CXXFLAGS = \ |
|
23 $(AM_CXXFLAGS) \ |
|
24 $(GLPK_CFLAGS) \ |
|
25 $(CPLEX_CFLAGS) \ |
|
26 $(SOPLEX_CXXFLAGS) \ |
|
27 $(CLP_CXXFLAGS) \ |
|
28 $(CBC_CXXFLAGS) |
|
29 |
|
30 lemon_libemon_la_LDFLAGS = \ |
|
31 $(GLPK_LIBS) \ |
|
32 $(CPLEX_LIBS) \ |
|
33 $(SOPLEX_LIBS) \ |
|
34 $(CLP_LIBS) \ |
|
35 $(CBC_LIBS) |
|
36 |
|
37 if HAVE_GLPK |
|
38 lemon_libemon_la_SOURCES += lemon/glpk.cc |
|
39 endif |
|
40 |
|
41 if HAVE_CPLEX |
|
42 lemon_libemon_la_SOURCES += lemon/cplex.cc |
|
43 endif |
|
44 |
|
45 if HAVE_SOPLEX |
|
46 lemon_libemon_la_SOURCES += lemon/soplex.cc |
|
47 endif |
|
48 |
|
49 if HAVE_CLP |
|
50 lemon_libemon_la_SOURCES += lemon/clp.cc |
|
51 endif |
|
52 |
|
53 if HAVE_CBC |
|
54 lemon_libemon_la_SOURCES += lemon/cbc.cc |
|
55 endif |
|
56 |
|
57 lemon_HEADERS += \ |
|
58 lemon/adaptors.h \ |
|
59 lemon/arg_parser.h \ |
|
60 lemon/assert.h \ |
|
61 lemon/bellman_ford.h \ |
|
62 lemon/bfs.h \ |
|
63 lemon/bin_heap.h \ |
|
64 lemon/binomial_heap.h \ |
|
65 lemon/bucket_heap.h \ |
|
66 lemon/capacity_scaling.h \ |
|
67 lemon/cbc.h \ |
|
68 lemon/circulation.h \ |
|
69 lemon/clp.h \ |
|
70 lemon/color.h \ |
|
71 lemon/concept_check.h \ |
|
72 lemon/connectivity.h \ |
|
73 lemon/core.h \ |
|
74 lemon/cost_scaling.h \ |
|
75 lemon/counter.h \ |
|
76 lemon/cplex.h \ |
|
77 lemon/cycle_canceling.h \ |
|
78 lemon/dfs.h \ |
|
79 lemon/dheap.h \ |
|
80 lemon/dijkstra.h \ |
|
81 lemon/dim2.h \ |
|
82 lemon/dimacs.h \ |
|
83 lemon/edge_set.h \ |
|
84 lemon/elevator.h \ |
|
85 lemon/error.h \ |
|
86 lemon/euler.h \ |
|
87 lemon/fib_heap.h \ |
|
88 lemon/fractional_matching.h \ |
|
89 lemon/full_graph.h \ |
|
90 lemon/glpk.h \ |
|
91 lemon/gomory_hu.h \ |
|
92 lemon/graph_to_eps.h \ |
|
93 lemon/grid_graph.h \ |
|
94 lemon/hartmann_orlin_mmc.h \ |
|
95 lemon/howard_mmc.h \ |
|
96 lemon/hypercube_graph.h \ |
|
97 lemon/karp_mmc.h \ |
|
98 lemon/kruskal.h \ |
|
99 lemon/hao_orlin.h \ |
|
100 lemon/lgf_reader.h \ |
|
101 lemon/lgf_writer.h \ |
|
102 lemon/list_graph.h \ |
|
103 lemon/lp.h \ |
|
104 lemon/lp_base.h \ |
|
105 lemon/lp_skeleton.h \ |
|
106 lemon/maps.h \ |
|
107 lemon/matching.h \ |
|
108 lemon/math.h \ |
|
109 lemon/min_cost_arborescence.h \ |
|
110 lemon/nauty_reader.h \ |
|
111 lemon/network_simplex.h \ |
|
112 lemon/pairing_heap.h \ |
|
113 lemon/path.h \ |
|
114 lemon/planarity.h \ |
|
115 lemon/preflow.h \ |
|
116 lemon/quad_heap.h \ |
|
117 lemon/radix_heap.h \ |
|
118 lemon/radix_sort.h \ |
|
119 lemon/random.h \ |
|
120 lemon/smart_graph.h \ |
|
121 lemon/soplex.h \ |
|
122 lemon/static_graph.h \ |
|
123 lemon/suurballe.h \ |
|
124 lemon/time_measure.h \ |
|
125 lemon/tolerance.h \ |
|
126 lemon/unionfind.h \ |
|
127 lemon/bits/windows.h |
|
128 |
|
129 bits_HEADERS += \ |
|
130 lemon/bits/alteration_notifier.h \ |
|
131 lemon/bits/array_map.h \ |
|
132 lemon/bits/bezier.h \ |
|
133 lemon/bits/default_map.h \ |
|
134 lemon/bits/edge_set_extender.h \ |
|
135 lemon/bits/enable_if.h \ |
|
136 lemon/bits/graph_adaptor_extender.h \ |
|
137 lemon/bits/graph_extender.h \ |
|
138 lemon/bits/map_extender.h \ |
|
139 lemon/bits/path_dump.h \ |
|
140 lemon/bits/solver_bits.h \ |
|
141 lemon/bits/traits.h \ |
|
142 lemon/bits/variant.h \ |
|
143 lemon/bits/vector_map.h |
|
144 |
|
145 concept_HEADERS += \ |
|
146 lemon/concepts/digraph.h \ |
|
147 lemon/concepts/graph.h \ |
|
148 lemon/concepts/graph_components.h \ |
|
149 lemon/concepts/heap.h \ |
|
150 lemon/concepts/maps.h \ |
|
151 lemon/concepts/path.h |
|