COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/Makefile.am @ 2067:cd414bfbe38b

Last change on this file since 2067:cd414bfbe38b was 2067:cd414bfbe38b, checked in by Balazs Dezso, 18 years ago

Tabu Search by Szabadkai Mark

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