COIN-OR::LEMON - Graph Library

Changeset 2108:f2c532541730 in lemon-0.x for lemon


Ignore:
Timestamp:
06/22/06 20:20:25 (18 years ago)
Author:
Akos Ladanyi
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2802
Message:

Single makefile.

Location:
lemon
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/Makefile.am

    r2095 r2108  
    1 AM_CPPFLAGS = -I$(top_srcdir)
     1pkgconfig_DATA += lemon/lemon.pc
    22
    3 pkgconfigdir = $(libdir)/pkgconfig
    4 pkgconfig_DATA = lemon.pc
     3lib_LTLIBRARIES += lemon/libemon.la
    54
    6 lib_LTLIBRARIES = libemon.la
     5lemon_libemon_la_SOURCES = \
     6        lemon/lp_base.cc \
     7        lemon/lp_skeleton.cc \
     8        lemon/base.cc \
     9        lemon/eps.cc \
     10        lemon/bits/mingw32_rand.cc \
     11        lemon/bits/mingw32_time.cc
    712
    8 libemon_la_SOURCES = \
    9         lp_base.cc \
    10         lp_skeleton.cc \
    11         base.cc \
    12         eps.cc \
    13         bits/mingw32_rand.cc \
    14         bits/mingw32_time.cc
    15 
    16 libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    17 libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
     13lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
     14lemon_libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS)
    1815
    1916if HAVE_GLPK
    20 libemon_la_SOURCES += lp_glpk.cc
     17lemon_libemon_la_SOURCES += lemon/lp_glpk.cc
    2118endif
    2219
    2320if HAVE_CPLEX
    24 libemon_la_SOURCES += lp_cplex.cc
     21lemon_libemon_la_SOURCES += lemon/lp_cplex.cc
    2522endif
    2623
    27 nobase_pkginclude_HEADERS = \
    28         bellman_ford.h \
    29         bezier.h \
    30         bfs.h \
    31         bin_heap.h \
    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 \
    49         bpugraph_adaptor.h \
    50         bucket_heap.h \
    51         color.h \
    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 \
    59         concept/path.h \
    60         concept/ugraph.h \
    61         config.h \
    62         counter.h \
    63         dag_shortest_path.h \
    64         dfs.h \
    65         dijkstra.h \
    66         dimacs.h \
    67         edge_set.h \
    68         edmonds_karp.h \
    69         eps.h \
    70         error.h \
    71         fib_heap.h \
    72         floyd_warshall.h \
    73         fredman_tarjan.h \
    74         full_graph.h \
    75         graph_adaptor.h \
    76         graph_reader.h \
    77         graph_to_eps.h \
    78         graph_utils.h \
    79         graph_writer.h \
    80         grid_ugraph.h \
    81         hypercube_graph.h \
    82         iterable_maps.h \
    83         johnson.h \
    84         kruskal.h \
    85         lemon_reader.h \
    86         lemon_writer.h \
    87         list_graph.h \
    88         lp.h \
    89         lp_base.h \
    90         lp_cplex.h \
    91         lp_glpk.h \
    92         lp_skeleton.h \
    93         map_iterator.h \
    94         maps.h \
    95         matrix_maps.h \
    96         max_matching.h \
    97         min_cost_arborescence.h \
    98         min_cost_flow.h \
    99         min_cut.h \
    100         path.h \
    101         polynomial.h \
    102         preflow.h \
    103         prim.h \
    104         radix_heap.h \
    105         radix_sort.h \
    106         refptr.h \
    107         simann.h \
    108         smart_graph.h \
    109         sub_graph.h \
    110         suurballe.h \
    111         tabu_search.h \
    112         time_measure.h \
    113         tolerance.h \
    114         topology.h \
    115         ugraph_adaptor.h \
    116         unionfind.h \
    117         xy.h
     24lemon_HEADERS += \
     25        lemon/bellman_ford.h \
     26        lemon/bezier.h \
     27        lemon/bfs.h \
     28        lemon/bin_heap.h \
     29        lemon/bipartite_matching.h \
     30        lemon/bpugraph_adaptor.h \
     31        lemon/bucket_heap.h \
     32        lemon/color.h \
     33        lemon/config.h \
     34        lemon/counter.h \
     35        lemon/dag_shortest_path.h \
     36        lemon/dfs.h \
     37        lemon/dijkstra.h \
     38        lemon/dimacs.h \
     39        lemon/edge_set.h \
     40        lemon/edmonds_karp.h \
     41        lemon/eps.h \
     42        lemon/error.h \
     43        lemon/fib_heap.h \
     44        lemon/floyd_warshall.h \
     45        lemon/fredman_tarjan.h \
     46        lemon/full_graph.h \
     47        lemon/graph_adaptor.h \
     48        lemon/graph_reader.h \
     49        lemon/graph_to_eps.h \
     50        lemon/graph_utils.h \
     51        lemon/graph_writer.h \
     52        lemon/grid_ugraph.h \
     53        lemon/hypercube_graph.h \
     54        lemon/iterable_maps.h \
     55        lemon/johnson.h \
     56        lemon/kruskal.h \
     57        lemon/lemon_reader.h \
     58        lemon/lemon_writer.h \
     59        lemon/list_graph.h \
     60        lemon/lp.h \
     61        lemon/lp_base.h \
     62        lemon/lp_cplex.h \
     63        lemon/lp_glpk.h \
     64        lemon/lp_skeleton.h \
     65        lemon/map_iterator.h \
     66        lemon/maps.h \
     67        lemon/matrix_maps.h \
     68        lemon/max_matching.h \
     69        lemon/min_cost_arborescence.h \
     70        lemon/min_cost_flow.h \
     71        lemon/min_cut.h \
     72        lemon/path.h \
     73        lemon/polynomial.h \
     74        lemon/preflow.h \
     75        lemon/prim.h \
     76        lemon/radix_heap.h \
     77        lemon/radix_sort.h \
     78        lemon/refptr.h \
     79        lemon/simann.h \
     80        lemon/smart_graph.h \
     81        lemon/sub_graph.h \
     82        lemon/suurballe.h \
     83        lemon/tabu_search.h \
     84        lemon/time_measure.h \
     85        lemon/tolerance.h \
     86        lemon/topology.h \
     87        lemon/ugraph_adaptor.h \
     88        lemon/unionfind.h \
     89        lemon/xy.h
     90
     91bits_HEADERS += \
     92        lemon/bits/alteration_notifier.h \
     93        lemon/bits/array_map.h \
     94        lemon/bits/base_extender.h \
     95        lemon/bits/default_map.h \
     96        lemon/bits/edge_set_extender.h \
     97        lemon/bits/graph_adaptor_extender.h \
     98        lemon/bits/graph_extender.h \
     99        lemon/bits/invalid.h \
     100        lemon/bits/item_reader.h \
     101        lemon/bits/item_writer.h \
     102        lemon/bits/map_extender.h \
     103        lemon/bits/mingw32_rand.h \
     104        lemon/bits/mingw32_time.h \
     105        lemon/bits/traits.h \
     106        lemon/bits/utility.h \
     107        lemon/bits/vector_map.h
     108
     109concept_HEADERS += \
     110        lemon/concept_check.h \
     111        lemon/concept/bpugraph.h \
     112        lemon/concept/graph.h \
     113        lemon/concept/graph_component.h \
     114        lemon/concept/heap.h \
     115        lemon/concept/maps.h \
     116        lemon/concept/matrix_maps.h \
     117        lemon/concept/path.h \
     118        lemon/concept/ugraph.h
Note: See TracChangeset for help on using the changeset viewer.