1 | AM_CPPFLAGS = -I$(top_srcdir) |
---|
2 | LDADD = $(top_builddir)/lemon/libemon.la |
---|
3 | |
---|
4 | EXTRA_DIST = sub_graph_adaptor_demo.dim |
---|
5 | |
---|
6 | noinst_PROGRAMS = \ |
---|
7 | dim_to_dot \ |
---|
8 | dijkstra_demo \ |
---|
9 | reader_writer_demo \ |
---|
10 | dim_to_lgf \ |
---|
11 | eps_demo \ |
---|
12 | graph_to_eps_demo \ |
---|
13 | graph_orientation \ |
---|
14 | min_route \ |
---|
15 | hello_lemon \ |
---|
16 | sub_graph_adaptor_demo \ |
---|
17 | descriptor_map_demo \ |
---|
18 | coloring \ |
---|
19 | grid_ugraph_demo \ |
---|
20 | topology_demo \ |
---|
21 | simann_maxcut_demo \ |
---|
22 | disjoint_paths_demo \ |
---|
23 | strongly_connected_orientation |
---|
24 | |
---|
25 | if HAVE_GLPK |
---|
26 | noinst_PROGRAMS += lp_demo lp_maxflow_demo |
---|
27 | else !HAVE_GLPK |
---|
28 | if HAVE_CPLEX |
---|
29 | noinst_PROGRAMS += lp_demo lp_maxflow_demo |
---|
30 | endif HAVE_CPLEX |
---|
31 | endif !HAVE_GLPK |
---|
32 | |
---|
33 | |
---|
34 | dim_to_dot_SOURCES = dim_to_dot.cc |
---|
35 | |
---|
36 | dijkstra_demo_SOURCES = dijkstra_demo.cc |
---|
37 | |
---|
38 | eps_demo_SOURCES = eps_demo.cc |
---|
39 | |
---|
40 | reader_writer_demo_SOURCES = reader_writer_demo.cc |
---|
41 | |
---|
42 | dim_to_lgf_SOURCES = dim_to_lgf.cc |
---|
43 | |
---|
44 | coloring_SOURCES = coloring.cc |
---|
45 | |
---|
46 | graph_to_eps_demo_SOURCES = graph_to_eps_demo.cc |
---|
47 | |
---|
48 | grid_ugraph_demo_SOURCES = grid_ugraph_demo.cc |
---|
49 | |
---|
50 | graph_orientation_SOURCES = graph_orientation.cc |
---|
51 | |
---|
52 | min_route_SOURCES = min_route.cc |
---|
53 | |
---|
54 | hello_lemon_SOURCES = hello_lemon.cc |
---|
55 | |
---|
56 | sub_graph_adaptor_demo_SOURCES = \ |
---|
57 | sub_graph_adaptor_demo.cc \ |
---|
58 | tight_edge_filter_map.h |
---|
59 | |
---|
60 | lp_demo_SOURCES = lp_demo.cc |
---|
61 | lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) |
---|
62 | |
---|
63 | lp_maxflow_demo_SOURCES = lp_maxflow_demo.cc |
---|
64 | lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) |
---|
65 | |
---|
66 | descriptor_map_demo_SOURCES = descriptor_map_demo.cc |
---|
67 | |
---|
68 | topology_demo_SOURCES = topology_demo.cc |
---|
69 | |
---|
70 | simann_maxcut_demo_SOURCES = simann_maxcut_demo.cc |
---|
71 | |
---|
72 | disjoint_paths_demo_SOURCES = disjoint_paths_demo.cc |
---|
73 | |
---|
74 | strongly_connected_orientation_SOURCES = strongly_connected_orientation.cc |
---|