| Line | |
|---|
| 1 | AM_CPPFLAGS = -I$(top_srcdir) |
|---|
| 2 | |
|---|
| 3 | pkgconfigdir = $(libdir)/pkgconfig |
|---|
| 4 | pkgconfig_DATA = lemon.pc |
|---|
| 5 | |
|---|
| 6 | lib_LTLIBRARIES = libemon.la |
|---|
| 7 | |
|---|
| 8 | libemon_la_SOURCES = \ |
|---|
| 9 | lp_base.cc \ |
|---|
| 10 | lp_skeleton.cc \ |
|---|
| 11 | base.cc \ |
|---|
| 12 | eps.cc |
|---|
| 13 | libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) |
|---|
| 14 | libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) |
|---|
| 15 | |
|---|
| 16 | if HAVE_GLPK |
|---|
| 17 | libemon_la_SOURCES += lp_glpk.cc |
|---|
| 18 | endif |
|---|
| 19 | |
|---|
| 20 | if HAVE_CPLEX |
|---|
| 21 | libemon_la_SOURCES += lp_cplex.cc |
|---|
| 22 | endif |
|---|
| 23 | |
|---|
| 24 | nobase_pkginclude_HEADERS = \ |
|---|
| 25 | bellman_ford.h \ |
|---|
| 26 | bezier.h \ |
|---|
| 27 | bfs.h \ |
|---|
| 28 | dfs.h \ |
|---|
| 29 | bin_heap.h \ |
|---|
| 30 | color.h \ |
|---|
| 31 | config.h \ |
|---|
| 32 | counter.h \ |
|---|
| 33 | dijkstra.h \ |
|---|
| 34 | dimacs.h \ |
|---|
| 35 | dag_shortest_path.h \ |
|---|
| 36 | edge_set.h \ |
|---|
| 37 | error.h \ |
|---|
| 38 | eps.h \ |
|---|
| 39 | fib_heap.h \ |
|---|
| 40 | floyd_warshall.h \ |
|---|
| 41 | fredman_tarjan.h \ |
|---|
| 42 | full_graph.h \ |
|---|
| 43 | grid_graph.h \ |
|---|
| 44 | graph_adaptor.h \ |
|---|
| 45 | graph_utils.h \ |
|---|
| 46 | graph_to_eps.h \ |
|---|
| 47 | hypercube_graph.h \ |
|---|
| 48 | invalid.h \ |
|---|
| 49 | iterable_maps.h \ |
|---|
| 50 | johnson.h \ |
|---|
| 51 | kruskal.h \ |
|---|
| 52 | linear_heap.h \ |
|---|
| 53 | list_graph.h \ |
|---|
| 54 | lp.h \ |
|---|
| 55 | lp_base.h \ |
|---|
| 56 | lp_cplex.h \ |
|---|
| 57 | lp_glpk.h \ |
|---|
| 58 | lp_skeleton.h \ |
|---|
| 59 | maps.h \ |
|---|
| 60 | matrix_maps.h \ |
|---|
| 61 | map_iterator.h \ |
|---|
| 62 | max_matching.h \ |
|---|
| 63 | min_cost_flow.h \ |
|---|
| 64 | min_cut.h \ |
|---|
| 65 | suurballe.h \ |
|---|
| 66 | preflow.h \ |
|---|
| 67 | path.h \ |
|---|
| 68 | prim.h \ |
|---|
| 69 | radix_heap.h \ |
|---|
| 70 | radix_sort.h \ |
|---|
| 71 | refptr.h \ |
|---|
| 72 | simann.h \ |
|---|
| 73 | smart_graph.h \ |
|---|
| 74 | sub_graph.h \ |
|---|
| 75 | time_measure.h \ |
|---|
| 76 | topology.h \ |
|---|
| 77 | traits.h \ |
|---|
| 78 | unionfind.h \ |
|---|
| 79 | xy.h \ |
|---|
| 80 | concept_check.h \ |
|---|
| 81 | utility.h \ |
|---|
| 82 | lemon_reader.h \ |
|---|
| 83 | lemon_writer.h \ |
|---|
| 84 | graph_reader.h \ |
|---|
| 85 | graph_writer.h \ |
|---|
| 86 | tolerance.h \ |
|---|
| 87 | bits/alteration_notifier.h \ |
|---|
| 88 | bits/array_map.h \ |
|---|
| 89 | bits/default_map.h \ |
|---|
| 90 | bits/vector_map.h \ |
|---|
| 91 | bits/iterable_graph_extender.h \ |
|---|
| 92 | bits/extendable_graph_extender.h \ |
|---|
| 93 | bits/clearable_graph_extender.h \ |
|---|
| 94 | bits/erasable_graph_extender.h \ |
|---|
| 95 | bits/graph_extender.h \ |
|---|
| 96 | bits/map_extender.h \ |
|---|
| 97 | bits/static_map.h \ |
|---|
| 98 | bits/item_reader.h \ |
|---|
| 99 | bits/item_writer.h \ |
|---|
| 100 | concept/bpugraph.h \ |
|---|
| 101 | concept/graph.h \ |
|---|
| 102 | concept/graph_component.h \ |
|---|
| 103 | concept/ugraph.h \ |
|---|
| 104 | concept/matrix_maps.h \ |
|---|
| 105 | concept/maps.h \ |
|---|
| 106 | concept/heap.h \ |
|---|
| 107 | concept/path.h |
|---|
Note: See
TracBrowser
for help on using the repository browser.