COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/Makefile.am @ 2036:9d0c8a205e58

Last change on this file since 2036:9d0c8a205e58 was 2035:e92071fadd3f, checked in by Balazs Dezso, 18 years ago

More mingw compatibility

Implementation of the drand48 functions

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