COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/Makefile.am @ 1833:6d107b0b6b46

Last change on this file since 1833:6d107b0b6b46 was 1833:6d107b0b6b46, checked in by Balazs Dezso, 18 years ago

Radix sort algorithm

File size: 1.6 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 = \
[1700]23        belmann_ford.h \
[1349]24        bezier.h \
25        bfs.h \
26        dfs.h \
27        bin_heap.h \
[1433]28        config.h \
[1349]29        dijkstra.h \
30        dimacs.h \
31        error.h \
32        fib_heap.h \
[1700]33        floyd_warshall.h \
[1349]34        full_graph.h \
[1625]35        grid_graph.h \
[1401]36        graph_adaptor.h \
[1349]37        graph_utils.h \
38        graph_to_eps.h \
[1693]39        hypercube_graph.h \
[1349]40        invalid.h \
[1677]41        iterable_maps.h \
[1700]42        johnson.h \
[1349]43        kruskal.h \
[1724]44        linear_heap.h \
[1349]45        list_graph.h \
[1629]46        lp.h \
[1378]47        lp_base.h \
[1381]48        lp_cplex.h \
[1378]49        lp_glpk.h \
50        lp_skeleton.h \
[1349]51        maps.h \
[1724]52        matrix_maps.h \
[1824]53        map_iterator.h \
[1349]54        max_matching.h \
55        min_cost_flow.h \
56        suurballe.h \
57        preflow.h \
58        path.h \
59        radix_heap.h \
[1833]60        radix_sort.h \
[1349]61        smart_graph.h \
62        time_measure.h \
[1700]63        topology.h \
[1724]64        traits.h \
[1349]65        unionfind.h \
66        xy.h \
67        concept_check.h \
68        utility.h \
[1408]69        lemon_reader.h \
[1409]70        lemon_writer.h \
[1349]71        graph_reader.h \
72        graph_writer.h \
73        bits/alteration_notifier.h \
74        bits/array_map.h \
75        bits/default_map.h \
76        bits/vector_map.h \
77        bits/iterable_graph_extender.h \
78        bits/extendable_graph_extender.h \
79        bits/clearable_graph_extender.h \
80        bits/erasable_graph_extender.h \
[1795]81        bits/graph_extender.h \
[1815]82        bits/map_extender.h \
[1707]83        bits/static_map.h \
[1409]84        bits/item_reader.h \
[1488]85        bits/item_writer.h \
[1349]86        concept/graph.h \
87        concept/graph_component.h \
88        concept/undir_graph.h \
[1724]89        concept/matrix_maps.h \
[1349]90        concept/maps.h \
91        concept/heap.h \
[959]92        concept/path.h
Note: See TracBrowser for help on using the repository browser.