COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/Makefile.am

    r445 r461  
    1111        lemon/base.cc \
    1212        lemon/color.cc \
     13        lemon/lp_base.cc \
     14        lemon/lp_skeleton.cc \
    1315        lemon/random.cc
    1416
    15 #lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS) $(AM_CXXFLAGS)
    16 #lemon_libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) $(SOPLEX_LIBS)
     17
     18lemon_libemon_la_CXXFLAGS = \
     19        $(GLPK_CFLAGS) \
     20        $(CPLEX_CFLAGS) \
     21        $(SOPLEX_CXXFLAGS) \
     22        $(CLP_CXXFLAGS)
     23
     24lemon_libemon_la_LDFLAGS = \
     25        $(GLPK_LIBS) \
     26        $(CPLEX_LIBS) \
     27        $(SOPLEX_LIBS) \
     28        $(CLP_LIBS)
     29
     30if HAVE_GLPK
     31lemon_libemon_la_SOURCES += lemon/glpk.cc
     32endif
     33
     34if HAVE_CPLEX
     35lemon_libemon_la_SOURCES += lemon/cplex.cc
     36endif
     37
     38if HAVE_SOPLEX
     39lemon_libemon_la_SOURCES += lemon/soplex.cc
     40endif
     41
     42if HAVE_CLP
     43lemon_libemon_la_SOURCES += lemon/clp.cc
     44endif
    1745
    1846lemon_HEADERS += \
     
    2351        lemon/bin_heap.h \
    2452        lemon/circulation.h \
     53        lemon/clp.h \
    2554        lemon/color.h \
    2655        lemon/concept_check.h \
    2756        lemon/counter.h \
    2857        lemon/core.h \
     58        lemon/cplex.h \
    2959        lemon/dfs.h \
    3060        lemon/dijkstra.h \
     
    3464        lemon/error.h \
    3565        lemon/full_graph.h \
     66        lemon/glpk.h \
    3667        lemon/graph_to_eps.h \
    3768        lemon/grid_graph.h \
     
    4172        lemon/lgf_reader.h \
    4273        lemon/lgf_writer.h \
     74        lemon/list_graph.h \
     75        lemon/lp.h \
     76        lemon/lp_base.h \
     77        lemon/lp_skeleton.h \
    4378        lemon/list_graph.h \
    4479        lemon/maps.h \
     
    5186        lemon/random.h \
    5287        lemon/smart_graph.h \
     88        lemon/soplex.h \
    5389        lemon/suurballe.h \
    5490        lemon/time_measure.h \
     
    67103        lemon/bits/map_extender.h \
    68104        lemon/bits/path_dump.h \
     105        lemon/bits/solver_bits.h \
    69106        lemon/bits/traits.h \
    70107        lemon/bits/variant.h \
Note: See TracChangeset for help on using the changeset viewer.