COIN-OR::LEMON - Graph Library

source: lemon-1.2/lemon/Makefile.am @ 894:bb70ad62c95f

Last change on this file since 894:bb70ad62c95f was 667:d10545c08e61, checked in by Alpar Juttner <alpar@…>, 15 years ago

Add lemon/config.h.cmake to the tarball

File size: 2.6 KB
RevLine 
[1]1EXTRA_DIST += \
[146]2        lemon/lemon.pc.in \
[667]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 = \
[440]11        lemon/arg_parser.cc \
12        lemon/base.cc \
13        lemon/color.cc \
[458]14        lemon/lp_base.cc \
15        lemon/lp_skeleton.cc \
[567]16        lemon/random.cc \
[482]17        lemon/bits/windows.cc
[10]18
[639]19nodist_lemon_HEADERS = lemon/config.h   
[667]20
[458]21lemon_libemon_la_CXXFLAGS = \
[550]22        $(AM_CXXFLAGS) \
[458]23        $(GLPK_CFLAGS) \
24        $(CPLEX_CFLAGS) \
[459]25        $(SOPLEX_CXXFLAGS) \
[567]26        $(CLP_CXXFLAGS) \
27        $(CBC_CXXFLAGS)
[1]28
[458]29lemon_libemon_la_LDFLAGS = \
30        $(GLPK_LIBS) \
31        $(CPLEX_LIBS) \
[459]32        $(SOPLEX_LIBS) \
[567]33        $(CLP_LIBS) \
34        $(CBC_LIBS)
[458]35
36if HAVE_GLPK
[461]37lemon_libemon_la_SOURCES += lemon/glpk.cc
[458]38endif
39
40if HAVE_CPLEX
[461]41lemon_libemon_la_SOURCES += lemon/cplex.cc
[458]42endif
43
44if HAVE_SOPLEX
[461]45lemon_libemon_la_SOURCES += lemon/soplex.cc
[458]46endif
[259]47
[459]48if HAVE_CLP
[461]49lemon_libemon_la_SOURCES += lemon/clp.cc
[459]50endif
[220]51
[567]52if HAVE_CBC
53lemon_libemon_la_SOURCES += lemon/cbc.cc
54endif
[501]55
[2]56lemon_HEADERS += \
[416]57        lemon/adaptors.h \
[440]58        lemon/arg_parser.h \
[108]59        lemon/assert.h \
[440]60        lemon/bfs.h \
61        lemon/bin_heap.h \
[630]62        lemon/cbc.h \
[440]63        lemon/circulation.h \
[461]64        lemon/clp.h \
[440]65        lemon/color.h \
[166]66        lemon/concept_check.h \
[522]67        lemon/connectivity.h \
[440]68        lemon/counter.h \
[220]69        lemon/core.h \
[461]70        lemon/cplex.h \
[440]71        lemon/dfs.h \
72        lemon/dijkstra.h \
73        lemon/dim2.h \
74        lemon/dimacs.h \
[468]75        lemon/edge_set.h \
[379]76        lemon/elevator.h \
[66]77        lemon/error.h \
[520]78        lemon/euler.h \
[353]79        lemon/full_graph.h \
[461]80        lemon/glpk.h \
[545]81        lemon/gomory_hu.h \
[440]82        lemon/graph_to_eps.h \
83        lemon/grid_graph.h \
[364]84        lemon/hypercube_graph.h \
[103]85        lemon/kruskal.h \
[409]86        lemon/hao_orlin.h \
[127]87        lemon/lgf_reader.h \
[195]88        lemon/lgf_writer.h \
[66]89        lemon/list_graph.h \
[458]90        lemon/lp.h \
91        lemon/lp_base.h \
92        lemon/lp_skeleton.h \
[459]93        lemon/list_graph.h \
[58]94        lemon/maps.h \
[594]95        lemon/matching.h \
[68]96        lemon/math.h \
[490]97        lemon/min_cost_arborescence.h \
[348]98        lemon/nauty_reader.h \
[601]99        lemon/network_simplex.h \
[96]100        lemon/path.h \
[389]101        lemon/preflow.h \
[441]102        lemon/radix_sort.h \
[440]103        lemon/random.h \
[109]104        lemon/smart_graph.h \
[461]105        lemon/soplex.h \
[345]106        lemon/suurballe.h \
[440]107        lemon/time_measure.h \
108        lemon/tolerance.h \
[482]109        lemon/unionfind.h \
110        lemon/bits/windows.h
[1]111
[7]112bits_HEADERS += \
[57]113        lemon/bits/alteration_notifier.h \
114        lemon/bits/array_map.h \
[440]115        lemon/bits/bezier.h \
[57]116        lemon/bits/default_map.h \
[468]117        lemon/bits/edge_set_extender.h \
[440]118        lemon/bits/enable_if.h \
[414]119        lemon/bits/graph_adaptor_extender.h \
[58]120        lemon/bits/graph_extender.h \
[57]121        lemon/bits/map_extender.h \
[100]122        lemon/bits/path_dump.h \
[459]123        lemon/bits/solver_bits.h \
[58]124        lemon/bits/traits.h \
[414]125        lemon/bits/variant.h \
[57]126        lemon/bits/vector_map.h
[1]127
[58]128concept_HEADERS += \
[57]129        lemon/concepts/digraph.h \
130        lemon/concepts/graph.h \
[195]131        lemon/concepts/graph_components.h \
[100]132        lemon/concepts/heap.h \
[58]133        lemon/concepts/maps.h \
[195]134        lemon/concepts/path.h
Note: See TracBrowser for help on using the repository browser.