author | deba |
Wed, 05 Oct 2005 13:21:41 +0000 | |
changeset 1707 | 39496e5482af |
parent 1700 | 30fe294ac801 |
child 1724 | b20777184ba8 |
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 libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
12 libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
14 if HAVE_GLPK
15 libemon_la_SOURCES += lp_glpk.cc
16 endif
18 if HAVE_CPLEX
19 libemon_la_SOURCES += lp_cplex.cc
20 endif
22 nobase_pkginclude_HEADERS = \
23 belmann_ford.h \
24 bezier.h \
25 bfs.h \
26 dfs.h \
27 bin_heap.h \
28 config.h \
29 dijkstra.h \
30 dimacs.h \
31 error.h \
32 fib_heap.h \
33 floyd_warshall.h \
34 full_graph.h \
35 grid_graph.h \
36 graph_adaptor.h \
37 graph_utils.h \
38 graph_to_eps.h \
39 hypercube_graph.h \
40 invalid.h \
41 iterable_maps.h \
42 johnson.h \
43 kruskal.h \
44 list_graph.h \
45 lp.h \
46 lp_base.h \
47 lp_cplex.h \
48 lp_glpk.h \
49 lp_skeleton.h \
50 maps.h \
51 max_matching.h \
52 min_cost_flow.h \
53 suurballe.h \
54 preflow.h \
55 path.h \
56 radix_heap.h \
57 smart_graph.h \
58 time_measure.h \
59 topology.h \
60 unionfind.h \
61 xy.h \
62 concept_check.h \
63 utility.h \
64 lemon_reader.h \
65 lemon_writer.h \
66 graph_reader.h \
67 graph_writer.h \
68 bits/alteration_notifier.h \
69 bits/map_iterator.h \
70 bits/array_map.h \
71 bits/default_map.h \
72 bits/extended_pair.h \
73 bits/vector_map.h \
74 bits/iterable_graph_extender.h \
75 bits/extendable_graph_extender.h \
76 bits/clearable_graph_extender.h \
77 bits/erasable_graph_extender.h \
78 bits/undir_graph_extender.h \
79 bits/static_map.h \
80 bits/item_reader.h \
81 bits/item_writer.h \
82 concept/graph.h \
83 concept/graph_component.h \
84 concept/undir_graph.h \
85 concept/maps.h \
86 concept/heap.h \
87 concept/path.h