COIN-OR::LEMON - Graph Library

source: lemon/lemon/Makefile.am @ 714:d10545c08e61

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

Add lemon/config.h.cmake to the tarball

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