source:
lemon-0.x/demo/Makefile.am
@
1920:e9e27c5a53bf
Last change on this file since 1920:e9e27c5a53bf was 1920:e9e27c5a53bf, checked in by , 19 years ago | |
---|---|
File size: 1.4 KB |
Rev | Line | |
---|---|---|
[1435] | 1 | AM_CPPFLAGS = -I$(top_srcdir) |
2 | LDADD = $(top_builddir)/lemon/libemon.la | |
[1349] | 3 | |
[1401] | 4 | EXTRA_DIST = sub_graph_adaptor_demo.dim |
[934] | 5 | |
[1349] | 6 | noinst_PROGRAMS = \ |
7 | dim_to_dot \ | |
[1526] | 8 | dijkstra_demo \ |
[1528] | 9 | reader_writer_demo \ |
[1349] | 10 | dim_to_lgf \ |
11 | graph_to_eps_demo \ | |
[1678] | 12 | graph_orientation \ |
[1349] | 13 | min_route \ |
[1520] | 14 | hello_lemon \ |
[1422] | 15 | sub_graph_adaptor_demo \ |
[1554] | 16 | descriptor_map_demo \ |
[1680] | 17 | coloring \ |
[1802] | 18 | grid_graph_demo \ |
[1920] | 19 | topology_demo \ |
20 | simann_maxcut_demo | |
[1349] | 21 | |
22 | if HAVE_GLPK | |
[1361] | 23 | noinst_PROGRAMS += lp_demo lp_maxflow_demo |
[1381] | 24 | else !HAVE_GLPK |
25 | if HAVE_CPLEX | |
26 | noinst_PROGRAMS += lp_demo lp_maxflow_demo | |
27 | endif HAVE_CPLEX | |
28 | endif !HAVE_GLPK | |
29 | ||
[934] | 30 | |
31 | dim_to_dot_SOURCES = dim_to_dot.cc | |
32 | ||
[1526] | 33 | dijkstra_demo_SOURCES = dijkstra_demo.cc |
34 | ||
[1528] | 35 | reader_writer_demo_SOURCES = reader_writer_demo.cc |
36 | ||
[1349] | 37 | dim_to_lgf_SOURCES = dim_to_lgf.cc |
[1073] | 38 | |
[1422] | 39 | coloring_SOURCES = coloring.cc |
40 | ||
[1296] | 41 | graph_to_eps_demo_SOURCES = graph_to_eps_demo.cc |
42 | ||
[1680] | 43 | grid_graph_demo_SOURCES = grid_graph_demo.cc |
44 | ||
[1678] | 45 | graph_orientation_SOURCES = graph_orientation.cc |
46 | ||
[1349] | 47 | min_route_SOURCES = min_route.cc |
48 | ||
[1520] | 49 | hello_lemon_SOURCES = hello_lemon.cc |
50 | ||
[1401] | 51 | sub_graph_adaptor_demo_SOURCES = \ |
52 | sub_graph_adaptor_demo.cc \ | |
[1349] | 53 | tight_edge_filter_map.h |
54 | ||
[1322] | 55 | lp_demo_SOURCES = lp_demo.cc |
[1387] | 56 | lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) |
[1361] | 57 | |
[1362] | 58 | lp_maxflow_demo_SOURCES = lp_maxflow_demo.cc |
[1387] | 59 | lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) |
[1554] | 60 | |
[1802] | 61 | descriptor_map_demo_SOURCES = descriptor_map_demo.cc |
62 | ||
[1920] | 63 | topology_demo_SOURCES = topology_demo.cc |
64 | ||
65 | simann_maxcut_demo_SOURCES = simann_maxcut_demo.cc |
Note: See TracBrowser
for help on using the repository browser.