COIN-OR::LEMON - Graph Library

source: lemon-1.2/lemon/Makefile.am @ 627:20dac2104519

Last change on this file since 627:20dac2104519 was 627: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 = \
[440]10        lemon/arg_parser.cc \
11        lemon/base.cc \
12        lemon/color.cc \
[458]13        lemon/lp_base.cc \
14        lemon/lp_skeleton.cc \
[567]15        lemon/random.cc \
[482]16        lemon/bits/windows.cc
[10]17
[458]18
19lemon_libemon_la_CXXFLAGS = \
[550]20        $(AM_CXXFLAGS) \
[458]21        $(GLPK_CFLAGS) \
22        $(CPLEX_CFLAGS) \
[459]23        $(SOPLEX_CXXFLAGS) \
[567]24        $(CLP_CXXFLAGS) \
25        $(CBC_CXXFLAGS)
[458]26
27lemon_libemon_la_LDFLAGS = \
28        $(GLPK_LIBS) \
29        $(CPLEX_LIBS) \
[459]30        $(SOPLEX_LIBS) \
[567]31        $(CLP_LIBS) \
32        $(CBC_LIBS)
[458]33
34if HAVE_GLPK
[461]35lemon_libemon_la_SOURCES += lemon/glpk.cc
[458]36endif
37
38if HAVE_CPLEX
[461]39lemon_libemon_la_SOURCES += lemon/cplex.cc
[458]40endif
41
42if HAVE_SOPLEX
[461]43lemon_libemon_la_SOURCES += lemon/soplex.cc
[458]44endif
[259]45
[459]46if HAVE_CLP
[461]47lemon_libemon_la_SOURCES += lemon/clp.cc
[459]48endif
[220]49
[567]50if HAVE_CBC
51lemon_libemon_la_SOURCES += lemon/cbc.cc
52endif
[1]53
[2]54lemon_HEADERS += \
[416]55        lemon/adaptors.h \
[440]56        lemon/arg_parser.h \
[108]57        lemon/assert.h \
[440]58        lemon/bfs.h \
59        lemon/bin_heap.h \
60        lemon/circulation.h \
[461]61        lemon/clp.h \
[440]62        lemon/color.h \
[166]63        lemon/concept_check.h \
[499]64        lemon/config.h \
[522]65        lemon/connectivity.h \
[440]66        lemon/counter.h \
[220]67        lemon/core.h \
[461]68        lemon/cplex.h \
[440]69        lemon/dfs.h \
70        lemon/dijkstra.h \
71        lemon/dim2.h \
72        lemon/dimacs.h \
[468]73        lemon/edge_set.h \
[379]74        lemon/elevator.h \
[66]75        lemon/error.h \
[520]76        lemon/euler.h \
[353]77        lemon/full_graph.h \
[461]78        lemon/glpk.h \
[545]79        lemon/gomory_hu.h \
[440]80        lemon/graph_to_eps.h \
81        lemon/grid_graph.h \
[364]82        lemon/hypercube_graph.h \
[103]83        lemon/kruskal.h \
[409]84        lemon/hao_orlin.h \
[127]85        lemon/lgf_reader.h \
[195]86        lemon/lgf_writer.h \
[66]87        lemon/list_graph.h \
[458]88        lemon/lp.h \
89        lemon/lp_base.h \
90        lemon/lp_skeleton.h \
[459]91        lemon/list_graph.h \
[58]92        lemon/maps.h \
[594]93        lemon/matching.h \
[68]94        lemon/math.h \
[490]95        lemon/min_cost_arborescence.h \
[348]96        lemon/nauty_reader.h \
[601]97        lemon/network_simplex.h \
[96]98        lemon/path.h \
[389]99        lemon/preflow.h \
[441]100        lemon/radix_sort.h \
[440]101        lemon/random.h \
[109]102        lemon/smart_graph.h \
[461]103        lemon/soplex.h \
[345]104        lemon/suurballe.h \
[440]105        lemon/time_measure.h \
106        lemon/tolerance.h \
[482]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 \
[440]114        lemon/bits/bezier.h \
[57]115        lemon/bits/default_map.h \
[468]116        lemon/bits/edge_set_extender.h \
[440]117        lemon/bits/enable_if.h \
[414]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 \
[459]122        lemon/bits/solver_bits.h \
[58]123        lemon/bits/traits.h \
[414]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.