source:
lemon/lemon/Makefile.am
@
484:08d495d48089
Last change on this file since 484:08d495d48089 was 484:08d495d48089, checked in by , 14 years ago | |
---|---|
File size: 2.2 KB |
Rev | Line | |
---|---|---|
[1] | 1 | EXTRA_DIST += \ |
[146] | 2 | lemon/lemon.pc.in \ |
3 | lemon/CMakeLists.txt | |
[1] | 4 | |
5 | pkgconfig_DATA += lemon/lemon.pc | |
6 | ||
7 | lib_LTLIBRARIES += lemon/libemon.la | |
8 | ||
[7] | 9 | lemon_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 \ | |
[463] | 15 | lemon/random.cc |
[10] | 16 | |
[481] | 17 | |
18 | lemon_libemon_la_CXXFLAGS = \ | |
19 | $(GLPK_CFLAGS) \ | |
20 | $(CPLEX_CFLAGS) \ | |
[482] | 21 | $(SOPLEX_CXXFLAGS) \ |
22 | $(CLP_CXXFLAGS) | |
[481] | 23 | |
24 | lemon_libemon_la_LDFLAGS = \ | |
25 | $(GLPK_LIBS) \ | |
26 | $(CPLEX_LIBS) \ | |
[482] | 27 | $(SOPLEX_LIBS) \ |
28 | $(CLP_LIBS) | |
[481] | 29 | |
30 | if HAVE_GLPK | |
[484] | 31 | lemon_libemon_la_SOURCES += lemon/glpk.cc |
[481] | 32 | endif |
33 | ||
34 | if HAVE_CPLEX | |
[484] | 35 | lemon_libemon_la_SOURCES += lemon/cplex.cc |
[481] | 36 | endif |
37 | ||
38 | if HAVE_SOPLEX | |
[484] | 39 | lemon_libemon_la_SOURCES += lemon/soplex.cc |
[481] | 40 | endif |
[1] | 41 | |
[482] | 42 | if HAVE_CLP |
[484] | 43 | lemon_libemon_la_SOURCES += lemon/clp.cc |
[482] | 44 | endif |
45 | ||
[2] | 46 | lemon_HEADERS += \ |
[432] | 47 | lemon/adaptors.h \ |
[463] | 48 | lemon/arg_parser.h \ |
[108] | 49 | lemon/assert.h \ |
[463] | 50 | lemon/bfs.h \ |
51 | lemon/bin_heap.h \ | |
52 | lemon/circulation.h \ | |
[484] | 53 | lemon/clp.h \ |
[463] | 54 | lemon/color.h \ |
[166] | 55 | lemon/concept_check.h \ |
[463] | 56 | lemon/counter.h \ |
[220] | 57 | lemon/core.h \ |
[484] | 58 | lemon/cplex.h \ |
[463] | 59 | lemon/dfs.h \ |
60 | lemon/dijkstra.h \ | |
61 | lemon/dim2.h \ | |
62 | lemon/dimacs.h \ | |
[394] | 63 | lemon/elevator.h \ |
[66] | 64 | lemon/error.h \ |
[365] | 65 | lemon/full_graph.h \ |
[484] | 66 | lemon/glpk.h \ |
[463] | 67 | lemon/graph_to_eps.h \ |
68 | lemon/grid_graph.h \ | |
[376] | 69 | lemon/hypercube_graph.h \ |
[103] | 70 | lemon/kruskal.h \ |
[425] | 71 | lemon/hao_orlin.h \ |
[127] | 72 | lemon/lgf_reader.h \ |
[195] | 73 | lemon/lgf_writer.h \ |
[66] | 74 | lemon/list_graph.h \ |
[481] | 75 | lemon/lp.h \ |
76 | lemon/lp_base.h \ | |
77 | lemon/lp_skeleton.h \ | |
[482] | 78 | lemon/list_graph.h \ |
[58] | 79 | lemon/maps.h \ |
[68] | 80 | lemon/math.h \ |
[338] | 81 | lemon/max_matching.h \ |
[360] | 82 | lemon/nauty_reader.h \ |
[96] | 83 | lemon/path.h \ |
[404] | 84 | lemon/preflow.h \ |
[464] | 85 | lemon/radix_sort.h \ |
[463] | 86 | lemon/random.h \ |
[109] | 87 | lemon/smart_graph.h \ |
[484] | 88 | lemon/soplex.h \ |
[357] | 89 | lemon/suurballe.h \ |
[463] | 90 | lemon/time_measure.h \ |
91 | lemon/tolerance.h \ | |
[103] | 92 | lemon/unionfind.h |
[1] | 93 | |
[7] | 94 | bits_HEADERS += \ |
[57] | 95 | lemon/bits/alteration_notifier.h \ |
96 | lemon/bits/array_map.h \ | |
97 | lemon/bits/base_extender.h \ | |
[463] | 98 | lemon/bits/bezier.h \ |
[57] | 99 | lemon/bits/default_map.h \ |
[463] | 100 | lemon/bits/enable_if.h \ |
[430] | 101 | lemon/bits/graph_adaptor_extender.h \ |
[58] | 102 | lemon/bits/graph_extender.h \ |
[57] | 103 | lemon/bits/map_extender.h \ |
[100] | 104 | lemon/bits/path_dump.h \ |
[482] | 105 | lemon/bits/solver_bits.h \ |
[58] | 106 | lemon/bits/traits.h \ |
[430] | 107 | lemon/bits/variant.h \ |
[57] | 108 | lemon/bits/vector_map.h |
[1] | 109 | |
[58] | 110 | concept_HEADERS += \ |
[57] | 111 | lemon/concepts/digraph.h \ |
112 | lemon/concepts/graph.h \ | |
[195] | 113 | lemon/concepts/graph_components.h \ |
[100] | 114 | lemon/concepts/heap.h \ |
[58] | 115 | lemon/concepts/maps.h \ |
[195] | 116 | lemon/concepts/path.h |
Note: See TracBrowser
for help on using the repository browser.