COIN-OR::LEMON - Graph Library

source: lemon/lemon/Makefile.am @ 675:586b65073025

Last change on this file since 675:586b65073025 was 674:20dac2104519, checked in by Akos Ladanyi <ladanyi@…>, 15 years ago

Merge and extend the fix of #275

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