author | deba |
Thu, 01 Dec 2005 15:08:46 +0000 | |
changeset 1842 | 8abf74160dc4 |
parent 1835 | eb6c34c76501 |
child 1847 | 7cbc12e42482 |
permissions | -rw-r--r-- |
1 AM_CPPFLAGS = -I$(top_srcdir)
3 pkgconfigdir = $(libdir)/pkgconfig
4 pkgconfig_DATA = lemon.pc
6 lib_LTLIBRARIES = libemon.la
8 libemon_la_SOURCES = \
9 lp_base.cc \
10 lp_skeleton.cc \
11 base.cc
12 libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
13 libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
15 if HAVE_GLPK
16 libemon_la_SOURCES += lp_glpk.cc
17 endif
19 if HAVE_CPLEX
20 libemon_la_SOURCES += lp_cplex.cc
21 endif
23 nobase_pkginclude_HEADERS = \
24 belmann_ford.h \
25 bezier.h \
26 bfs.h \
27 dfs.h \
28 bin_heap.h \
29 config.h \
30 dijkstra.h \
31 dimacs.h \
32 edge_set.h \
33 error.h \
34 fib_heap.h \
35 floyd_warshall.h \
36 full_graph.h \
37 grid_graph.h \
38 graph_adaptor.h \
39 graph_utils.h \
40 graph_to_eps.h \
41 hypercube_graph.h \
42 invalid.h \
43 iterable_maps.h \
44 johnson.h \
45 kruskal.h \
46 linear_heap.h \
47 list_graph.h \
48 lp.h \
49 lp_base.h \
50 lp_cplex.h \
51 lp_glpk.h \
52 lp_skeleton.h \
53 maps.h \
54 matrix_maps.h \
55 map_iterator.h \
56 max_matching.h \
57 min_cost_flow.h \
58 suurballe.h \
59 preflow.h \
60 path.h \
61 radix_heap.h \
62 radix_sort.h \
63 smart_graph.h \
64 time_measure.h \
65 topology.h \
66 traits.h \
67 unionfind.h \
68 xy.h \
69 concept_check.h \
70 utility.h \
71 lemon_reader.h \
72 lemon_writer.h \
73 graph_reader.h \
74 graph_writer.h \
75 tolerance.h \
76 bits/alteration_notifier.h \
77 bits/array_map.h \
78 bits/default_map.h \
79 bits/vector_map.h \
80 bits/iterable_graph_extender.h \
81 bits/extendable_graph_extender.h \
82 bits/clearable_graph_extender.h \
83 bits/erasable_graph_extender.h \
84 bits/graph_extender.h \
85 bits/map_extender.h \
86 bits/static_map.h \
87 bits/item_reader.h \
88 bits/item_writer.h \
89 concept/graph.h \
90 concept/graph_component.h \
91 concept/undir_graph.h \
92 concept/matrix_maps.h \
93 concept/maps.h \
94 concept/heap.h \
95 concept/path.h