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