source:
lemon-0.x/lemon/Makefile.am
@
2038:33db14058543
Last change on this file since 2038:33db14058543 was 2038:33db14058543, checked in by , 19 years ago | |
---|---|
File size: 1.9 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 \ |
[1971] | 11 | base.cc \ |
[2035] | 12 | eps.cc \ |
13 | bits/mingw32_rand.cc \ | |
14 | bits/mingw32_time.cc | |
15 | ||
[1386] | 16 | libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) |
17 | libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) | |
[1304] | 18 | |
[1349] | 19 | if HAVE_GLPK |
20 | libemon_la_SOURCES += lp_glpk.cc | |
21 | endif | |
[596] | 22 | |
[1381] | 23 | if HAVE_CPLEX |
24 | libemon_la_SOURCES += lp_cplex.cc | |
25 | endif | |
26 | ||
[1378] | 27 | nobase_pkginclude_HEADERS = \ |
[1864] | 28 | bellman_ford.h \ |
[1349] | 29 | bezier.h \ |
30 | bfs.h \ | |
31 | dfs.h \ | |
32 | bin_heap.h \ | |
[2031] | 33 | bpugraph_adaptor.h \ |
[1971] | 34 | color.h \ |
[1433] | 35 | config.h \ |
[1847] | 36 | counter.h \ |
[1349] | 37 | dijkstra.h \ |
38 | dimacs.h \ | |
[1912] | 39 | dag_shortest_path.h \ |
[1842] | 40 | edge_set.h \ |
[2034] | 41 | edmonds_karp.h \ |
[1349] | 42 | error.h \ |
[1971] | 43 | eps.h \ |
[1349] | 44 | fib_heap.h \ |
[1700] | 45 | floyd_warshall.h \ |
[1912] | 46 | fredman_tarjan.h \ |
[1349] | 47 | full_graph.h \ |
[1979] | 48 | grid_ugraph.h \ |
[1401] | 49 | graph_adaptor.h \ |
[1349] | 50 | graph_utils.h \ |
51 | graph_to_eps.h \ | |
[1693] | 52 | hypercube_graph.h \ |
[1677] | 53 | iterable_maps.h \ |
[1700] | 54 | johnson.h \ |
[1349] | 55 | kruskal.h \ |
[2038] | 56 | bucket_heap.h \ |
[1349] | 57 | list_graph.h \ |
[1629] | 58 | lp.h \ |
[1378] | 59 | lp_base.h \ |
[1381] | 60 | lp_cplex.h \ |
[1378] | 61 | lp_glpk.h \ |
62 | lp_skeleton.h \ | |
[1349] | 63 | maps.h \ |
[1724] | 64 | matrix_maps.h \ |
[1824] | 65 | map_iterator.h \ |
[1349] | 66 | max_matching.h \ |
[2017] | 67 | min_cost_arborescence.h \ |
[1349] | 68 | min_cost_flow.h \ |
[1975] | 69 | min_cut.h \ |
[1349] | 70 | suurballe.h \ |
71 | preflow.h \ | |
72 | path.h \ | |
[1912] | 73 | prim.h \ |
[1349] | 74 | radix_heap.h \ |
[1833] | 75 | radix_sort.h \ |
[1977] | 76 | refptr.h \ |
[1923] | 77 | simann.h \ |
[1349] | 78 | smart_graph.h \ |
[1866] | 79 | sub_graph.h \ |
[1349] | 80 | time_measure.h \ |
[1700] | 81 | topology.h \ |
[1979] | 82 | ugraph_adaptor.h \ |
[1349] | 83 | unionfind.h \ |
84 | xy.h \ | |
85 | concept_check.h \ | |
[1408] | 86 | lemon_reader.h \ |
[1409] | 87 | lemon_writer.h \ |
[1349] | 88 | graph_reader.h \ |
89 | graph_writer.h \ | |
[1835] | 90 | tolerance.h \ |
[1349] | 91 | bits/alteration_notifier.h \ |
92 | bits/array_map.h \ | |
[1999] | 93 | bits/base_extender.h \ |
[1349] | 94 | bits/default_map.h \ |
95 | bits/vector_map.h \ | |
[1979] | 96 | bits/map_extender.h \ |
[1795] | 97 | bits/graph_extender.h \ |
[1979] | 98 | bits/graph_adaptor_extender.h \ |
99 | bits/edge_set_extender.h \ | |
[1993] | 100 | bits/invalid.h \ |
[1409] | 101 | bits/item_reader.h \ |
[1488] | 102 | bits/item_writer.h \ |
[1993] | 103 | bits/traits.h \ |
104 | bits/utility.h \ | |
[2035] | 105 | bits/mingw32_rand.h \ |
106 | bits/mingw32_time.h \ | |
[1910] | 107 | concept/bpugraph.h \ |
[1349] | 108 | concept/graph.h \ |
109 | concept/graph_component.h \ | |
[1909] | 110 | concept/ugraph.h \ |
[1724] | 111 | concept/matrix_maps.h \ |
[1349] | 112 | concept/maps.h \ |
113 | concept/heap.h \ | |
[959] | 114 | concept/path.h |
Note: See TracBrowser
for help on using the repository browser.