COIN-OR::LEMON - Graph Library

source: lemon/lemon/Makefile.am @ 782:853fcddcf282

Last change on this file since 782:853fcddcf282 was 733:7439dc5fe1b9, checked in by Alpar Juttner <alpar@…>, 15 years ago

Merge

File size: 2.6 KB
RevLine 
[1]1EXTRA_DIST += \
[146]2        lemon/lemon.pc.in \
[714]3        lemon/CMakeLists.txt \
4        lemon/config.h.cmake
[1]5
6pkgconfig_DATA += lemon/lemon.pc
7
8lib_LTLIBRARIES += lemon/libemon.la
9
[7]10lemon_libemon_la_SOURCES = \
[463]11        lemon/arg_parser.cc \
12        lemon/base.cc \
13        lemon/color.cc \
[481]14        lemon/lp_base.cc \
15        lemon/lp_skeleton.cc \
[614]16        lemon/random.cc \
[511]17        lemon/bits/windows.cc
[10]18
[686]19nodist_lemon_HEADERS = lemon/config.h   
[481]20
21lemon_libemon_la_CXXFLAGS = \
[597]22        $(AM_CXXFLAGS) \
[481]23        $(GLPK_CFLAGS) \
24        $(CPLEX_CFLAGS) \
[482]25        $(SOPLEX_CXXFLAGS) \
[614]26        $(CLP_CXXFLAGS) \
27        $(CBC_CXXFLAGS)
[481]28
29lemon_libemon_la_LDFLAGS = \
30        $(GLPK_LIBS) \
31        $(CPLEX_LIBS) \
[482]32        $(SOPLEX_LIBS) \
[614]33        $(CLP_LIBS) \
34        $(CBC_LIBS)
[481]35
36if HAVE_GLPK
[484]37lemon_libemon_la_SOURCES += lemon/glpk.cc
[481]38endif
39
40if HAVE_CPLEX
[484]41lemon_libemon_la_SOURCES += lemon/cplex.cc
[481]42endif
43
44if HAVE_SOPLEX
[484]45lemon_libemon_la_SOURCES += lemon/soplex.cc
[481]46endif
[1]47
[482]48if HAVE_CLP
[484]49lemon_libemon_la_SOURCES += lemon/clp.cc
[482]50endif
[434]51
[614]52if HAVE_CBC
53lemon_libemon_la_SOURCES += lemon/cbc.cc
[482]54endif
55
[2]56lemon_HEADERS += \
[432]57        lemon/adaptors.h \
[463]58        lemon/arg_parser.h \
[108]59        lemon/assert.h \
[463]60        lemon/bfs.h \
61        lemon/bin_heap.h \
[728]62        lemon/bucket_heap.h \
[677]63        lemon/cbc.h \
[463]64        lemon/circulation.h \
[484]65        lemon/clp.h \
[463]66        lemon/color.h \
[166]67        lemon/concept_check.h \
[569]68        lemon/connectivity.h \
[463]69        lemon/counter.h \
[220]70        lemon/core.h \
[484]71        lemon/cplex.h \
[463]72        lemon/dfs.h \
73        lemon/dijkstra.h \
74        lemon/dim2.h \
75        lemon/dimacs.h \
[491]76        lemon/edge_set.h \
[394]77        lemon/elevator.h \
[66]78        lemon/error.h \
[567]79        lemon/euler.h \
[728]80        lemon/fib_heap.h \
[365]81        lemon/full_graph.h \
[484]82        lemon/glpk.h \
[592]83        lemon/gomory_hu.h \
[463]84        lemon/graph_to_eps.h \
85        lemon/grid_graph.h \
[376]86        lemon/hypercube_graph.h \
[103]87        lemon/kruskal.h \
[425]88        lemon/hao_orlin.h \
[127]89        lemon/lgf_reader.h \
[195]90        lemon/lgf_writer.h \
[66]91        lemon/list_graph.h \
[481]92        lemon/lp.h \
93        lemon/lp_base.h \
94        lemon/lp_skeleton.h \
[58]95        lemon/maps.h \
[641]96        lemon/matching.h \
[68]97        lemon/math.h \
[522]98        lemon/min_cost_arborescence.h \
[360]99        lemon/nauty_reader.h \
[648]100        lemon/network_simplex.h \
[96]101        lemon/path.h \
[404]102        lemon/preflow.h \
[728]103        lemon/radix_heap.h \
[464]104        lemon/radix_sort.h \
[463]105        lemon/random.h \
[109]106        lemon/smart_graph.h \
[484]107        lemon/soplex.h \
[357]108        lemon/suurballe.h \
[463]109        lemon/time_measure.h \
110        lemon/tolerance.h \
[511]111        lemon/unionfind.h \
112        lemon/bits/windows.h
[1]113
[7]114bits_HEADERS += \
[57]115        lemon/bits/alteration_notifier.h \
116        lemon/bits/array_map.h \
[463]117        lemon/bits/bezier.h \
[57]118        lemon/bits/default_map.h \
[491]119        lemon/bits/edge_set_extender.h \
[463]120        lemon/bits/enable_if.h \
[430]121        lemon/bits/graph_adaptor_extender.h \
[58]122        lemon/bits/graph_extender.h \
[57]123        lemon/bits/map_extender.h \
[100]124        lemon/bits/path_dump.h \
[482]125        lemon/bits/solver_bits.h \
[58]126        lemon/bits/traits.h \
[430]127        lemon/bits/variant.h \
[57]128        lemon/bits/vector_map.h
[1]129
[58]130concept_HEADERS += \
[57]131        lemon/concepts/digraph.h \
132        lemon/concepts/graph.h \
[195]133        lemon/concepts/graph_components.h \
[100]134        lemon/concepts/heap.h \
[58]135        lemon/concepts/maps.h \
[195]136        lemon/concepts/path.h
Note: See TracBrowser for help on using the repository browser.