COIN-OR::LEMON - Graph Library

Changeset 686:72ac25ad276e in lemon for lemon/Makefile.am


Ignore:
Timestamp:
04/29/09 17:55:27 (15 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Parents:
685:57e6f560fb13 (diff), 543:32fb28fc9d42 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Phase:
public
Message:

Merge

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/Makefile.am

    r543 r686  
    88
    99lemon_libemon_la_SOURCES = \
    10         lemon/arg_parser.cc \
    11         lemon/base.cc \
    12         lemon/color.cc \
    13         lemon/random.cc \
     10        lemon/arg_parser.cc \
     11        lemon/base.cc \
     12        lemon/color.cc \
     13        lemon/lp_base.cc \
     14        lemon/lp_skeleton.cc \
     15        lemon/random.cc \
    1416        lemon/bits/windows.cc
    1517
    16 #lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS)
    17 #lemon_libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) $(SOPLEX_LIBS)
     18nodist_lemon_HEADERS = lemon/config.h   
     19       
     20lemon_libemon_la_CXXFLAGS = \
     21        $(AM_CXXFLAGS) \
     22        $(GLPK_CFLAGS) \
     23        $(CPLEX_CFLAGS) \
     24        $(SOPLEX_CXXFLAGS) \
     25        $(CLP_CXXFLAGS) \
     26        $(CBC_CXXFLAGS)
    1827
    19 nodist_lemon_HEADERS = lemon/config.h
     28lemon_libemon_la_LDFLAGS = \
     29        $(GLPK_LIBS) \
     30        $(CPLEX_LIBS) \
     31        $(SOPLEX_LIBS) \
     32        $(CLP_LIBS) \
     33        $(CBC_LIBS)
     34
     35if HAVE_GLPK
     36lemon_libemon_la_SOURCES += lemon/glpk.cc
     37endif
     38
     39if HAVE_CPLEX
     40lemon_libemon_la_SOURCES += lemon/cplex.cc
     41endif
     42
     43if HAVE_SOPLEX
     44lemon_libemon_la_SOURCES += lemon/soplex.cc
     45endif
     46
     47if HAVE_CLP
     48lemon_libemon_la_SOURCES += lemon/clp.cc
     49endif
     50
     51if HAVE_CBC
     52lemon_libemon_la_SOURCES += lemon/cbc.cc
     53endif
    2054
    2155lemon_HEADERS += \
    22         lemon/arg_parser.h \
     56        lemon/adaptors.h \
     57        lemon/arg_parser.h \
    2358        lemon/assert.h \
    24         lemon/bfs.h \
    25         lemon/bin_heap.h \
    26         lemon/color.h \
     59        lemon/bfs.h \
     60        lemon/bin_heap.h \
     61        lemon/cbc.h \
     62        lemon/circulation.h \
     63        lemon/clp.h \
     64        lemon/color.h \
    2765        lemon/concept_check.h \
    28         lemon/counter.h \
     66        lemon/connectivity.h \
     67        lemon/counter.h \
    2968        lemon/core.h \
    30         lemon/dfs.h \
    31         lemon/dijkstra.h \
    32         lemon/dim2.h \
     69        lemon/cplex.h \
     70        lemon/dfs.h \
     71        lemon/dijkstra.h \
     72        lemon/dim2.h \
     73        lemon/dimacs.h \
     74        lemon/edge_set.h \
     75        lemon/elevator.h \
    3376        lemon/error.h \
    34         lemon/graph_to_eps.h \
     77        lemon/euler.h \
     78        lemon/full_graph.h \
     79        lemon/glpk.h \
     80        lemon/gomory_hu.h \
     81        lemon/graph_to_eps.h \
     82        lemon/grid_graph.h \
     83        lemon/hypercube_graph.h \
    3584        lemon/kruskal.h \
     85        lemon/hao_orlin.h \
    3686        lemon/lgf_reader.h \
    3787        lemon/lgf_writer.h \
    3888        lemon/list_graph.h \
     89        lemon/lp.h \
     90        lemon/lp_base.h \
     91        lemon/lp_skeleton.h \
     92        lemon/list_graph.h \
    3993        lemon/maps.h \
     94        lemon/matching.h \
    4095        lemon/math.h \
     96        lemon/min_cost_arborescence.h \
     97        lemon/nauty_reader.h \
     98        lemon/network_simplex.h \
    4199        lemon/path.h \
    42         lemon/random.h \
     100        lemon/preflow.h \
     101        lemon/radix_sort.h \
     102        lemon/random.h \
    43103        lemon/smart_graph.h \
    44         lemon/time_measure.h \
    45         lemon/tolerance.h \
     104        lemon/soplex.h \
     105        lemon/suurballe.h \
     106        lemon/time_measure.h \
     107        lemon/tolerance.h \
    46108        lemon/unionfind.h \
    47109        lemon/bits/windows.h
     
    51113        lemon/bits/array_map.h \
    52114        lemon/bits/base_extender.h \
    53         lemon/bits/bezier.h \
     115        lemon/bits/bezier.h \
    54116        lemon/bits/default_map.h \
    55         lemon/bits/enable_if.h \
     117        lemon/bits/edge_set_extender.h \
     118        lemon/bits/enable_if.h \
     119        lemon/bits/graph_adaptor_extender.h \
    56120        lemon/bits/graph_extender.h \
    57121        lemon/bits/map_extender.h \
    58122        lemon/bits/path_dump.h \
     123        lemon/bits/solver_bits.h \
    59124        lemon/bits/traits.h \
     125        lemon/bits/variant.h \
    60126        lemon/bits/vector_map.h
    61127
  • lemon/Makefile.am

    r677 r686  
    1616        lemon/bits/windows.cc
    1717
    18 
     18nodist_lemon_HEADERS = lemon/config.h   
     19       
    1920lemon_libemon_la_CXXFLAGS = \
    2021        $(AM_CXXFLAGS) \
     
    6364        lemon/color.h \
    6465        lemon/concept_check.h \
    65         lemon/config.h \
    6666        lemon/connectivity.h \
    6767        lemon/counter.h \
Note: See TracChangeset for help on using the changeset viewer.