2 |
2 |
3 pkgconfigdir = $(libdir)/pkgconfig |
3 pkgconfigdir = $(libdir)/pkgconfig |
4 pkgconfig_DATA = lemon.pc |
4 pkgconfig_DATA = lemon.pc |
5 |
5 |
6 lib_LTLIBRARIES = libemon.la |
6 lib_LTLIBRARIES = libemon.la |
7 libemon_la_SOURCES = \ |
7 |
8 lp_base.cc \ |
8 libemon_la_SOURCES = \ |
9 lp_glpk.cc \ |
9 lp_base.cc \ |
10 lp_skeleton.cc |
10 lp_skeleton.cc |
11 |
11 |
12 pkginclude_HEADERS = \ |
12 if HAVE_GLPK |
13 bezier.h \ |
13 libemon_la_SOURCES += lp_glpk.cc |
14 bfs.h \ |
14 libemon_la_CXXFLAGS = $(GLPK_CFLAGS) |
15 dfs.h \ |
15 libemon_la_LDFLAGS = $(GLPK_LIBS) |
16 bin_heap.h \ |
16 endif |
17 dijkstra.h \ |
|
18 dimacs.h \ |
|
19 error.h \ |
|
20 fib_heap.h \ |
|
21 full_graph.h \ |
|
22 graph_wrapper.h \ |
|
23 graph_utils.h \ |
|
24 graph_to_eps.h \ |
|
25 invalid.h \ |
|
26 kruskal.h \ |
|
27 list_graph.h \ |
|
28 maps.h \ |
|
29 max_matching.h \ |
|
30 min_cost_flow.h \ |
|
31 suurballe.h \ |
|
32 preflow.h \ |
|
33 path.h \ |
|
34 radix_heap.h \ |
|
35 smart_graph.h \ |
|
36 time_measure.h \ |
|
37 unionfind.h \ |
|
38 xy.h \ |
|
39 concept_check.h \ |
|
40 utility.h \ |
|
41 graph_reader.h \ |
|
42 graph_writer.h \ |
|
43 map_utils.h \ |
|
44 bits/alteration_notifier.h \ |
|
45 bits/map_iterator.h \ |
|
46 bits/array_map.h \ |
|
47 bits/default_map.h \ |
|
48 bits/extended_pair.h \ |
|
49 bits/vector_map.h \ |
|
50 bits/iterable_graph_extender.h \ |
|
51 bits/extendable_graph_extender.h \ |
|
52 bits/clearable_graph_extender.h \ |
|
53 bits/erasable_graph_extender.h \ |
|
54 bits/undir_graph_extender.h |
|
55 |
17 |
56 noinst_HEADERS = \ |
18 pkginclude_HEADERS = \ |
57 lp_base.h \ |
19 bezier.h \ |
58 lp_glpk.h \ |
20 bfs.h \ |
59 lp_skeleton.h \ |
21 dfs.h \ |
60 concept/graph.h \ |
22 bin_heap.h \ |
61 concept/graph_component.h \ |
23 dijkstra.h \ |
62 concept/undir_graph.h \ |
24 dimacs.h \ |
63 concept/sym_graph.h \ |
25 error.h \ |
64 concept/maps.h \ |
26 fib_heap.h \ |
65 concept/heap.h \ |
27 full_graph.h \ |
|
28 graph_wrapper.h \ |
|
29 graph_utils.h \ |
|
30 graph_to_eps.h \ |
|
31 invalid.h \ |
|
32 kruskal.h \ |
|
33 list_graph.h \ |
|
34 maps.h \ |
|
35 max_matching.h \ |
|
36 min_cost_flow.h \ |
|
37 suurballe.h \ |
|
38 preflow.h \ |
|
39 path.h \ |
|
40 radix_heap.h \ |
|
41 smart_graph.h \ |
|
42 time_measure.h \ |
|
43 unionfind.h \ |
|
44 xy.h \ |
|
45 concept_check.h \ |
|
46 utility.h \ |
|
47 graph_reader.h \ |
|
48 graph_writer.h \ |
|
49 map_utils.h \ |
|
50 bits/alteration_notifier.h \ |
|
51 bits/map_iterator.h \ |
|
52 bits/array_map.h \ |
|
53 bits/default_map.h \ |
|
54 bits/extended_pair.h \ |
|
55 bits/vector_map.h \ |
|
56 bits/iterable_graph_extender.h \ |
|
57 bits/extendable_graph_extender.h \ |
|
58 bits/clearable_graph_extender.h \ |
|
59 bits/erasable_graph_extender.h \ |
|
60 bits/undir_graph_extender.h |
|
61 |
|
62 noinst_HEADERS = \ |
|
63 lp_base.h \ |
|
64 lp_glpk.h \ |
|
65 lp_skeleton.h \ |
|
66 concept/graph.h \ |
|
67 concept/graph_component.h \ |
|
68 concept/undir_graph.h \ |
|
69 concept/sym_graph.h \ |
|
70 concept/maps.h \ |
|
71 concept/heap.h \ |
66 concept/path.h |
72 concept/path.h |