COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/Makefile.am @ 2022:0f3367da6104

Last change on this file since 2022:0f3367da6104 was 2017:6064fd33807c, checked in by Balazs Dezso, 18 years ago

Minimum Cost Arborescence algorithm

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