COIN-OR::LEMON - Graph Library

source: lemon-0.x/lemon/Makefile.am @ 2100:6fbe90faf02a

Last change on this file since 2100:6fbe90faf02a was 2095:5ed8ef40a483, checked in by Alpar Juttner, 18 years ago

Bugfix

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        bin_heap.h \
[2086]32        bipartite_matching.h \
33        bits/alteration_notifier.h \
34        bits/array_map.h \
35        bits/base_extender.h \
36        bits/default_map.h \
37        bits/edge_set_extender.h \
38        bits/graph_adaptor_extender.h \
39        bits/graph_extender.h \
40        bits/invalid.h \
41        bits/item_reader.h \
42        bits/item_writer.h \
43        bits/map_extender.h \
44        bits/mingw32_rand.h \
45        bits/mingw32_time.h \
46        bits/traits.h \
47        bits/utility.h \
48        bits/vector_map.h \
[2031]49        bpugraph_adaptor.h \
[2040]50        bucket_heap.h \
[1971]51        color.h \
[2086]52        concept_check.h \
53        concept/bpugraph.h \
54        concept/graph.h \
55        concept/graph_component.h \
56        concept/heap.h \
57        concept/maps.h \
58        concept/matrix_maps.h \
[2095]59        concept/path.h \
[2086]60        concept/ugraph.h \
[1433]61        config.h \
[1847]62        counter.h \
[2086]63        dag_shortest_path.h \
64        dfs.h \
[1349]65        dijkstra.h \
66        dimacs.h \
[1842]67        edge_set.h \
[2034]68        edmonds_karp.h \
[2086]69        eps.h \
[1349]70        error.h \
71        fib_heap.h \
[1700]72        floyd_warshall.h \
[1912]73        fredman_tarjan.h \
[1349]74        full_graph.h \
[2086]75        graph_adaptor.h \
76        graph_reader.h \
77        graph_to_eps.h \
78        graph_utils.h \
79        graph_writer.h \
[1979]80        grid_ugraph.h \
[1693]81        hypercube_graph.h \
[1677]82        iterable_maps.h \
[1700]83        johnson.h \
[1349]84        kruskal.h \
[2086]85        lemon_reader.h \
86        lemon_writer.h \
[1349]87        list_graph.h \
[1629]88        lp.h \
[1378]89        lp_base.h \
[1381]90        lp_cplex.h \
[1378]91        lp_glpk.h \
92        lp_skeleton.h \
[2086]93        map_iterator.h \
[1349]94        maps.h \
[1724]95        matrix_maps.h \
[1349]96        max_matching.h \
[2017]97        min_cost_arborescence.h \
[1349]98        min_cost_flow.h \
[1975]99        min_cut.h \
[2086]100        path.h \
101        polynomial.h \
[1349]102        preflow.h \
[1912]103        prim.h \
[1349]104        radix_heap.h \
[1833]105        radix_sort.h \
[1977]106        refptr.h \
[1923]107        simann.h \
[1349]108        smart_graph.h \
[1866]109        sub_graph.h \
[2086]110        suurballe.h \
[2067]111        tabu_search.h \
[1349]112        time_measure.h \
[2086]113        tolerance.h \
[1700]114        topology.h \
[1979]115        ugraph_adaptor.h \
[1349]116        unionfind.h \
[2086]117        xy.h
Note: See TracBrowser for help on using the repository browser.