COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/Makefile.am @ 2034:b71f8ff62046

Last change on this file since 2034:b71f8ff62046 was 2034:b71f8ff62046, checked in by Balazs Dezso, 18 years ago

Edmonds-Karp MaxFlow?
ResGraphAdaptor? with Tolerance

File size: 1.8 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 \
12        eps.cc
13libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
14libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
15
16if HAVE_GLPK
17libemon_la_SOURCES += lp_glpk.cc
18endif
19
20if HAVE_CPLEX
21libemon_la_SOURCES += lp_cplex.cc
22endif
23
24nobase_pkginclude_HEADERS = \
25        bellman_ford.h \
26        bezier.h \
27        bfs.h \
28        dfs.h \
29        bin_heap.h \
30        bpugraph_adaptor.h \
31        color.h \
32        config.h \
33        counter.h \
34        dijkstra.h \
35        dimacs.h \
36        dag_shortest_path.h \
37        edge_set.h \
38        edmonds_karp.h \
39        error.h \
40        eps.h \
41        fib_heap.h \
42        floyd_warshall.h \
43        fredman_tarjan.h \
44        full_graph.h \
45        grid_ugraph.h \
46        graph_adaptor.h \
47        graph_utils.h \
48        graph_to_eps.h \
49        hypercube_graph.h \
50        iterable_maps.h \
51        johnson.h \
52        kruskal.h \
53        linear_heap.h \
54        list_graph.h \
55        lp.h \
56        lp_base.h \
57        lp_cplex.h \
58        lp_glpk.h \
59        lp_skeleton.h \
60        maps.h \
61        matrix_maps.h \
62        map_iterator.h \
63        max_matching.h \
64        min_cost_arborescence.h \
65        min_cost_flow.h \
66        min_cut.h \
67        suurballe.h \
68        preflow.h \
69        path.h \
70        prim.h \
71        radix_heap.h \
72        radix_sort.h \
73        refptr.h \
74        simann.h \
75        smart_graph.h \
76        sub_graph.h \
77        time_measure.h \
78        topology.h \
79        ugraph_adaptor.h \
80        unionfind.h \
81        xy.h \
82        concept_check.h \
83        lemon_reader.h \
84        lemon_writer.h \
85        graph_reader.h \
86        graph_writer.h \
87        tolerance.h \
88        bits/alteration_notifier.h \
89        bits/array_map.h \
90        bits/base_extender.h \
91        bits/default_map.h \
92        bits/vector_map.h \
93        bits/map_extender.h \
94        bits/graph_extender.h \
95        bits/graph_adaptor_extender.h \
96        bits/edge_set_extender.h \
97        bits/invalid.h \
98        bits/item_reader.h \
99        bits/item_writer.h \
100        bits/traits.h \
101        bits/utility.h \
102        concept/bpugraph.h \
103        concept/graph.h \
104        concept/graph_component.h \
105        concept/ugraph.h \
106        concept/matrix_maps.h \
107        concept/maps.h \
108        concept/heap.h \
109        concept/path.h
Note: See TracBrowser for help on using the repository browser.