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