Changeset 562:b9b3473327e3 in lemon for lemon/Makefile.am
- Timestamp:
- 02/16/09 19:15:52 (16 years ago)
- Branch:
- default
- Parents:
- 561:2eb5c8ca2c91 (diff), 511:879c55700cd4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/Makefile.am
r511 r562 8 8 9 9 lemon_libemon_la_SOURCES = \ 10 lemon/arg_parser.cc \ 11 lemon/base.cc \ 12 lemon/color.cc \ 10 lemon/arg_parser.cc \ 11 lemon/base.cc \ 12 lemon/color.cc \ 13 lemon/lp_base.cc \ 14 lemon/lp_skeleton.cc \ 13 15 lemon/random.cc \ 14 16 lemon/bits/windows.cc 15 17 16 #lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS) 17 #lemon_libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) $(SOPLEX_LIBS) 18 19 lemon_libemon_la_CXXFLAGS = \ 20 $(GLPK_CFLAGS) \ 21 $(CPLEX_CFLAGS) \ 22 $(SOPLEX_CXXFLAGS) \ 23 $(CLP_CXXFLAGS) 24 25 lemon_libemon_la_LDFLAGS = \ 26 $(GLPK_LIBS) \ 27 $(CPLEX_LIBS) \ 28 $(SOPLEX_LIBS) \ 29 $(CLP_LIBS) 30 31 if HAVE_GLPK 32 lemon_libemon_la_SOURCES += lemon/glpk.cc 33 endif 34 35 if HAVE_CPLEX 36 lemon_libemon_la_SOURCES += lemon/cplex.cc 37 endif 38 39 if HAVE_SOPLEX 40 lemon_libemon_la_SOURCES += lemon/soplex.cc 41 endif 42 43 if HAVE_CLP 44 lemon_libemon_la_SOURCES += lemon/clp.cc 45 endif 18 46 19 47 lemon_HEADERS += \ 20 lemon/arg_parser.h \ 48 lemon/adaptors.h \ 49 lemon/arg_parser.h \ 21 50 lemon/assert.h \ 22 lemon/bfs.h \ 23 lemon/bin_heap.h \ 24 lemon/color.h \ 51 lemon/bfs.h \ 52 lemon/bin_heap.h \ 53 lemon/circulation.h \ 54 lemon/clp.h \ 55 lemon/color.h \ 25 56 lemon/concept_check.h \ 26 57 lemon/counter.h \ 27 58 lemon/core.h \ 28 lemon/dfs.h \ 29 lemon/dijkstra.h \ 30 lemon/dim2.h \ 59 lemon/cplex.h \ 60 lemon/dfs.h \ 61 lemon/dijkstra.h \ 62 lemon/dim2.h \ 63 lemon/dimacs.h \ 64 lemon/edge_set.h \ 65 lemon/elevator.h \ 31 66 lemon/error.h \ 32 lemon/graph_to_eps.h \ 67 lemon/full_graph.h \ 68 lemon/glpk.h \ 69 lemon/graph_to_eps.h \ 70 lemon/grid_graph.h \ 71 lemon/hypercube_graph.h \ 33 72 lemon/kruskal.h \ 73 lemon/hao_orlin.h \ 34 74 lemon/lgf_reader.h \ 35 75 lemon/lgf_writer.h \ 36 76 lemon/list_graph.h \ 77 lemon/lp.h \ 78 lemon/lp_base.h \ 79 lemon/lp_skeleton.h \ 80 lemon/list_graph.h \ 37 81 lemon/maps.h \ 38 82 lemon/math.h \ 83 lemon/max_matching.h \ 84 lemon/nauty_reader.h \ 39 85 lemon/path.h \ 40 lemon/random.h \ 86 lemon/preflow.h \ 87 lemon/radix_sort.h \ 88 lemon/random.h \ 41 89 lemon/smart_graph.h \ 42 lemon/time_measure.h \ 43 lemon/tolerance.h \ 90 lemon/soplex.h \ 91 lemon/suurballe.h \ 92 lemon/time_measure.h \ 93 lemon/tolerance.h \ 44 94 lemon/unionfind.h \ 45 95 lemon/bits/windows.h … … 49 99 lemon/bits/array_map.h \ 50 100 lemon/bits/base_extender.h \ 51 101 lemon/bits/bezier.h \ 52 102 lemon/bits/default_map.h \ 53 lemon/bits/enable_if.h \ 103 lemon/bits/edge_set_extender.h \ 104 lemon/bits/enable_if.h \ 105 lemon/bits/graph_adaptor_extender.h \ 54 106 lemon/bits/graph_extender.h \ 55 107 lemon/bits/map_extender.h \ 56 108 lemon/bits/path_dump.h \ 109 lemon/bits/solver_bits.h \ 57 110 lemon/bits/traits.h \ 111 lemon/bits/variant.h \ 58 112 lemon/bits/vector_map.h 59 113 -
lemon/Makefile.am
r492 r562 13 13 lemon/lp_base.cc \ 14 14 lemon/lp_skeleton.cc \ 15 lemon/random.cc 15 lemon/random.cc \ 16 lemon/bits/windows.cc 16 17 17 18 … … 91 92 lemon/time_measure.h \ 92 93 lemon/tolerance.h \ 93 lemon/unionfind.h 94 lemon/unionfind.h \ 95 lemon/bits/windows.h 94 96 95 97 bits_HEADERS += \
Note: See TracChangeset
for help on using the changeset viewer.