COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/Makefile.am @ 1694:6d81e6f7a88d

Last change on this file since 1694:6d81e6f7a88d was 1693:269f0cbfbcc8, checked in by Balazs Dezso, 19 years ago

Improving GridGraph? and HyperCubeGraph?

File size: 1.5 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
11libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
12libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
13
14if HAVE_GLPK
15libemon_la_SOURCES += lp_glpk.cc
16endif
17
18if HAVE_CPLEX
19libemon_la_SOURCES += lp_cplex.cc
20endif
21
22nobase_pkginclude_HEADERS = \
23        bezier.h \
24        bfs.h \
25        dfs.h \
26        bin_heap.h \
27        config.h \
28        dijkstra.h \
29        dimacs.h \
30        error.h \
31        fib_heap.h \
32        full_graph.h \
33        grid_graph.h \
34        graph_adaptor.h \
35        graph_utils.h \
36        graph_to_eps.h \
37        hypercube_graph.h \
38        invalid.h \
39        iterable_maps.h \
40        kruskal.h \
41        list_graph.h \
42        lp.h \
43        lp_base.h \
44        lp_cplex.h \
45        lp_glpk.h \
46        lp_skeleton.h \
47        maps.h \
48        max_matching.h \
49        min_cost_flow.h \
50        suurballe.h \
51        preflow.h \
52        path.h \
53        radix_heap.h \
54        smart_graph.h \
55        time_measure.h \
56        unionfind.h \
57        xy.h \
58        concept_check.h \
59        utility.h \
60        lemon_reader.h \
61        lemon_writer.h \
62        graph_reader.h \
63        graph_writer.h \
64        bits/alteration_notifier.h \
65        bits/map_iterator.h \
66        bits/array_map.h \
67        bits/default_map.h \
68        bits/extended_pair.h \
69        bits/vector_map.h \
70        bits/iterable_graph_extender.h \
71        bits/extendable_graph_extender.h \
72        bits/clearable_graph_extender.h \
73        bits/erasable_graph_extender.h \
74        bits/undir_graph_extender.h \
75        bits/item_reader.h \
76        bits/item_writer.h \
77        concept/graph.h \
78        concept/graph_component.h \
79        concept/undir_graph.h \
80        concept/maps.h \
81        concept/heap.h \
82        concept/path.h
Note: See TracBrowser for help on using the repository browser.