COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/Makefile.am @ 1677:a9f923a4d998

Last change on this file since 1677:a9f923a4d998 was 1677:a9f923a4d998, checked in by Alpar Juttner, 19 years ago

iterable_maps.h header hes been added. Up to now it contains an iterable bool
map and specialized versions for Node and Edge maps.

File size: 1.4 KB
RevLine 
[1435]1AM_CPPFLAGS = -I$(top_srcdir)
[1304]2
3pkgconfigdir = $(libdir)/pkgconfig
4pkgconfig_DATA = lemon.pc
5
6lib_LTLIBRARIES = libemon.la
[1349]7
8libemon_la_SOURCES = \
9        lp_base.cc \
[1313]10        lp_skeleton.cc
[1386]11libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
12libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
[1304]13
[1349]14if HAVE_GLPK
15libemon_la_SOURCES += lp_glpk.cc
16endif
[596]17
[1381]18if HAVE_CPLEX
19libemon_la_SOURCES += lp_cplex.cc
20endif
21
[1378]22nobase_pkginclude_HEADERS = \
[1349]23        bezier.h \
24        bfs.h \
25        dfs.h \
26        bin_heap.h \
[1433]27        config.h \
[1349]28        dijkstra.h \
29        dimacs.h \
30        error.h \
31        fib_heap.h \
32        full_graph.h \
[1625]33        grid_graph.h \
[1401]34        graph_adaptor.h \
[1349]35        graph_utils.h \
36        graph_to_eps.h \
37        invalid.h \
[1677]38        iterable_maps.h \
[1349]39        kruskal.h \
40        list_graph.h \
[1629]41        lp.h \
[1378]42        lp_base.h \
[1381]43        lp_cplex.h \
[1378]44        lp_glpk.h \
45        lp_skeleton.h \
[1349]46        maps.h \
47        max_matching.h \
48        min_cost_flow.h \
49        suurballe.h \
50        preflow.h \
51        path.h \
52        radix_heap.h \
53        smart_graph.h \
54        time_measure.h \
55        unionfind.h \
56        xy.h \
57        concept_check.h \
58        utility.h \
[1408]59        lemon_reader.h \
[1409]60        lemon_writer.h \
[1349]61        graph_reader.h \
62        graph_writer.h \
63        bits/alteration_notifier.h \
64        bits/map_iterator.h \
65        bits/array_map.h \
66        bits/default_map.h \
67        bits/extended_pair.h \
68        bits/vector_map.h \
69        bits/iterable_graph_extender.h \
70        bits/extendable_graph_extender.h \
71        bits/clearable_graph_extender.h \
72        bits/erasable_graph_extender.h \
[1408]73        bits/undir_graph_extender.h \
[1409]74        bits/item_reader.h \
[1488]75        bits/item_writer.h \
[1349]76        concept/graph.h \
77        concept/graph_component.h \
78        concept/undir_graph.h \
79        concept/maps.h \
80        concept/heap.h \
[959]81        concept/path.h
Note: See TracBrowser for help on using the repository browser.