COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/Makefile.am @ 1841:a2dfee683243

Last change on this file since 1841:a2dfee683243 was 1835:eb6c34c76501, checked in by Alpar Juttner, 18 years ago
  • tolerance.h added
  • tolerance handler added to preflow (but not yet used!!).
File size: 1.6 KB
Line 
1AM_CPPFLAGS = -I$(top_srcdir)
2
3pkgconfigdir = $(libdir)/pkgconfig
4pkgconfig_DATA = lemon.pc
5
6lib_LTLIBRARIES = libemon.la
7
8libemon_la_SOURCES = \
9        lp_base.cc \
10        lp_skeleton.cc \
11        base.cc
12libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
13libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
14
15if HAVE_GLPK
16libemon_la_SOURCES += lp_glpk.cc
17endif
18
19if HAVE_CPLEX
20libemon_la_SOURCES += lp_cplex.cc
21endif
22
23nobase_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        error.h \
33        fib_heap.h \
34        floyd_warshall.h \
35        full_graph.h \
36        grid_graph.h \
37        graph_adaptor.h \
38        graph_utils.h \
39        graph_to_eps.h \
40        hypercube_graph.h \
41        invalid.h \
42        iterable_maps.h \
43        johnson.h \
44        kruskal.h \
45        linear_heap.h \
46        list_graph.h \
47        lp.h \
48        lp_base.h \
49        lp_cplex.h \
50        lp_glpk.h \
51        lp_skeleton.h \
52        maps.h \
53        matrix_maps.h \
54        map_iterator.h \
55        max_matching.h \
56        min_cost_flow.h \
57        suurballe.h \
58        preflow.h \
59        path.h \
60        radix_heap.h \
61        radix_sort.h \
62        smart_graph.h \
63        time_measure.h \
64        topology.h \
65        traits.h \
66        unionfind.h \
67        xy.h \
68        concept_check.h \
69        utility.h \
70        lemon_reader.h \
71        lemon_writer.h \
72        graph_reader.h \
73        graph_writer.h \
74        tolerance.h \
75        bits/alteration_notifier.h \
76        bits/array_map.h \
77        bits/default_map.h \
78        bits/vector_map.h \
79        bits/iterable_graph_extender.h \
80        bits/extendable_graph_extender.h \
81        bits/clearable_graph_extender.h \
82        bits/erasable_graph_extender.h \
83        bits/graph_extender.h \
84        bits/map_extender.h \
85        bits/static_map.h \
86        bits/item_reader.h \
87        bits/item_writer.h \
88        concept/graph.h \
89        concept/graph_component.h \
90        concept/undir_graph.h \
91        concept/matrix_maps.h \
92        concept/maps.h \
93        concept/heap.h \
94        concept/path.h
Note: See TracBrowser for help on using the repository browser.