COIN-OR::LEMON - Graph Library

source: lemon-0.x/demo/Makefile.am @ 2118:54350d5c316a

Last change on this file since 2118:54350d5c316a was 2108:f2c532541730, checked in by Akos Ladanyi, 18 years ago

Single makefile.

File size: 1.9 KB
Line 
1EXTRA_DIST += demo/sub_graph_adaptor_demo.dim
2
3if WANT_DEMO
4
5noinst_PROGRAMS += \
6        demo/dim_to_dot \
7        demo/dijkstra_demo \
8        demo/reader_writer_demo \
9        demo/dim_to_lgf \
10        demo/eps_demo \
11        demo/graph_to_eps_demo \
12        demo/graph_orientation \
13        demo/min_route \
14        demo/hello_lemon \
15        demo/sub_graph_adaptor_demo \
16        demo/descriptor_map_demo \
17        demo/coloring \
18        demo/grid_ugraph_demo \
19        demo/topology_demo \
20        demo/simann_maxcut_demo \
21        demo/disjoint_paths_demo \
22        demo/strongly_connected_orientation
23
24if HAVE_GLPK
25noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo
26else !HAVE_GLPK
27if HAVE_CPLEX
28noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo
29endif HAVE_CPLEX
30endif !HAVE_GLPK
31
32endif WANT_DEMO
33
34demo_dim_to_dot_SOURCES = demo/dim_to_dot.cc
35
36demo_dijkstra_demo_SOURCES = demo/dijkstra_demo.cc
37
38demo_eps_demo_SOURCES = demo/eps_demo.cc
39
40demo_reader_writer_demo_SOURCES = demo/reader_writer_demo.cc
41
42demo_dim_to_lgf_SOURCES = demo/dim_to_lgf.cc
43
44demo_coloring_SOURCES = demo/coloring.cc
45
46demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc
47
48demo_grid_ugraph_demo_SOURCES = demo/grid_ugraph_demo.cc
49
50demo_graph_orientation_SOURCES = demo/graph_orientation.cc
51
52demo_min_route_SOURCES = demo/min_route.cc
53
54demo_hello_lemon_SOURCES = demo/hello_lemon.cc
55
56demo_sub_graph_adaptor_demo_SOURCES = \
57        demo/sub_graph_adaptor_demo.cc \
58        demo/tight_edge_filter_map.h
59
60demo_lp_demo_SOURCES = demo/lp_demo.cc
61demo_lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
62
63demo_lp_maxflow_demo_SOURCES = demo/lp_maxflow_demo.cc
64demo_lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
65
66demo_descriptor_map_demo_SOURCES = demo/descriptor_map_demo.cc
67
68demo_topology_demo_SOURCES = demo/topology_demo.cc
69
70demo_simann_maxcut_demo_SOURCES = demo/simann_maxcut_demo.cc
71
72demo_disjoint_paths_demo_SOURCES = demo/disjoint_paths_demo.cc
73
74demo_strongly_connected_orientation_SOURCES = demo/strongly_connected_orientation.cc
Note: See TracBrowser for help on using the repository browser.