COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/Makefile.am @ 2008:0820d8168cbb

Last change on this file since 2008:0820d8168cbb was 1999:2ff283124dfc, checked in by Balazs Dezso, 18 years ago

Clarifing alteration observing system
It is directly connected now to a container

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        color.h \
31        config.h \
32        counter.h \
33        dijkstra.h \
34        dimacs.h \
35        dag_shortest_path.h \
36        edge_set.h \
37        error.h \
38        eps.h \
39        fib_heap.h \
40        floyd_warshall.h \
41        fredman_tarjan.h \
42        full_graph.h \
43        grid_ugraph.h \
44        graph_adaptor.h \
45        graph_utils.h \
46        graph_to_eps.h \
47        hypercube_graph.h \
48        iterable_maps.h \
49        johnson.h \
50        kruskal.h \
51        linear_heap.h \
52        list_graph.h \
53        lp.h \
54        lp_base.h \
55        lp_cplex.h \
56        lp_glpk.h \
57        lp_skeleton.h \
58        maps.h \
59        matrix_maps.h \
60        map_iterator.h \
61        max_matching.h \
62        min_cost_flow.h \
63        min_cut.h \
64        suurballe.h \
65        preflow.h \
66        path.h \
67        prim.h \
68        radix_heap.h \
69        radix_sort.h \
70        refptr.h \
71        simann.h \
72        smart_graph.h \
73        sub_graph.h \
74        time_measure.h \
75        topology.h \
76        ugraph_adaptor.h \
77        unionfind.h \
78        xy.h \
79        concept_check.h \
80        lemon_reader.h \
81        lemon_writer.h \
82        graph_reader.h \
83        graph_writer.h \
84        tolerance.h \
85        bits/alteration_notifier.h \
86        bits/array_map.h \
87        bits/base_extender.h \
88        bits/default_map.h \
89        bits/vector_map.h \
90        bits/map_extender.h \
91        bits/graph_extender.h \
92        bits/graph_adaptor_extender.h \
93        bits/edge_set_extender.h \
94        bits/invalid.h \
95        bits/item_reader.h \
96        bits/item_writer.h \
97        bits/traits.h \
98        bits/utility.h \
99        concept/bpugraph.h \
100        concept/graph.h \
101        concept/graph_component.h \
102        concept/ugraph.h \
103        concept/matrix_maps.h \
104        concept/maps.h \
105        concept/heap.h \
106        concept/path.h
Note: See TracBrowser for help on using the repository browser.