source:
lemon-0.x/lemon/Makefile.am
@
1968:78e6e2d1fd96
Last change on this file since 1968:78e6e2d1fd96 was 1968:78e6e2d1fd96, checked in by , 19 years ago | |
---|---|
File size: 1.8 KB |
Rev | Line | |
---|---|---|
[1435] | 1 | AM_CPPFLAGS = -I$(top_srcdir) |
[1304] | 2 | |
3 | pkgconfigdir = $(libdir)/pkgconfig | |
4 | pkgconfig_DATA = lemon.pc | |
5 | ||
6 | lib_LTLIBRARIES = libemon.la | |
[1349] | 7 | |
8 | libemon_la_SOURCES = \ | |
9 | lp_base.cc \ | |
[1835] | 10 | lp_skeleton.cc \ |
11 | base.cc | |
[1386] | 12 | libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) |
13 | libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) | |
[1304] | 14 | |
[1349] | 15 | if HAVE_GLPK |
16 | libemon_la_SOURCES += lp_glpk.cc | |
17 | endif | |
[596] | 18 | |
[1381] | 19 | if HAVE_CPLEX |
20 | libemon_la_SOURCES += lp_cplex.cc | |
21 | endif | |
22 | ||
[1378] | 23 | nobase_pkginclude_HEADERS = \ |
[1864] | 24 | bellman_ford.h \ |
[1349] | 25 | bezier.h \ |
26 | bfs.h \ | |
27 | dfs.h \ | |
28 | bin_heap.h \ | |
[1433] | 29 | config.h \ |
[1847] | 30 | counter.h \ |
[1349] | 31 | dijkstra.h \ |
32 | dimacs.h \ | |
[1912] | 33 | dag_shortest_path.h \ |
[1842] | 34 | edge_set.h \ |
[1349] | 35 | error.h \ |
36 | fib_heap.h \ | |
[1700] | 37 | floyd_warshall.h \ |
[1912] | 38 | fredman_tarjan.h \ |
[1349] | 39 | full_graph.h \ |
[1625] | 40 | grid_graph.h \ |
[1401] | 41 | graph_adaptor.h \ |
[1349] | 42 | graph_utils.h \ |
43 | graph_to_eps.h \ | |
[1693] | 44 | hypercube_graph.h \ |
[1349] | 45 | invalid.h \ |
[1677] | 46 | iterable_maps.h \ |
[1700] | 47 | johnson.h \ |
[1349] | 48 | kruskal.h \ |
[1724] | 49 | linear_heap.h \ |
[1349] | 50 | list_graph.h \ |
[1629] | 51 | lp.h \ |
[1378] | 52 | lp_base.h \ |
[1381] | 53 | lp_cplex.h \ |
[1378] | 54 | lp_glpk.h \ |
55 | lp_skeleton.h \ | |
[1349] | 56 | maps.h \ |
[1724] | 57 | matrix_maps.h \ |
[1824] | 58 | map_iterator.h \ |
[1349] | 59 | max_matching.h \ |
60 | min_cost_flow.h \ | |
[1968] | 61 | minimum_cut.h \ |
[1349] | 62 | suurballe.h \ |
63 | preflow.h \ | |
64 | path.h \ | |
[1912] | 65 | prim.h \ |
[1349] | 66 | radix_heap.h \ |
[1833] | 67 | radix_sort.h \ |
[1923] | 68 | simann.h \ |
[1349] | 69 | smart_graph.h \ |
[1866] | 70 | sub_graph.h \ |
[1349] | 71 | time_measure.h \ |
[1700] | 72 | topology.h \ |
[1724] | 73 | traits.h \ |
[1349] | 74 | unionfind.h \ |
75 | xy.h \ | |
76 | concept_check.h \ | |
77 | utility.h \ | |
[1408] | 78 | lemon_reader.h \ |
[1409] | 79 | lemon_writer.h \ |
[1349] | 80 | graph_reader.h \ |
81 | graph_writer.h \ | |
[1835] | 82 | tolerance.h \ |
[1349] | 83 | bits/alteration_notifier.h \ |
84 | bits/array_map.h \ | |
85 | bits/default_map.h \ | |
86 | bits/vector_map.h \ | |
87 | bits/iterable_graph_extender.h \ | |
88 | bits/extendable_graph_extender.h \ | |
89 | bits/clearable_graph_extender.h \ | |
90 | bits/erasable_graph_extender.h \ | |
[1795] | 91 | bits/graph_extender.h \ |
[1815] | 92 | bits/map_extender.h \ |
[1707] | 93 | bits/static_map.h \ |
[1409] | 94 | bits/item_reader.h \ |
[1488] | 95 | bits/item_writer.h \ |
[1910] | 96 | concept/bpugraph.h \ |
[1349] | 97 | concept/graph.h \ |
98 | concept/graph_component.h \ | |
[1909] | 99 | concept/ugraph.h \ |
[1724] | 100 | concept/matrix_maps.h \ |
[1349] | 101 | concept/maps.h \ |
102 | concept/heap.h \ | |
[959] | 103 | concept/path.h |
Note: See TracBrowser
for help on using the repository browser.