COIN-OR::LEMON - Graph Library

source: lemon-0.x/demo/Makefile.am

Last change on this file was 2497:ea96c0acefc4, checked in by Akos Ladanyi, 17 years ago

Build fix.

File size: 2.9 KB
RevLine 
[2119]1EXTRA_DIST += \
2        demo/Makefile \
[2375]3        demo/sub_graph_adaptor_demo.dim \
4        demo/circulation-input.lgf \
5        demo/coloring.lgf \
6        demo/dir_components.lgf \
7        demo/disjoint_paths_demo.lgf \
8        demo/graph_orientation.lgf \
9        demo/partitions.lgf \
10        demo/route.lgf \
11        demo/sample.lgf \
12        demo/simann_maxcut_demo.lgf \
13        demo/strongly_connected_orientation.lgf \
14        demo/sub_gad_input.lgf \
[2400]15        demo/u_components.lgf \
[2420]16        demo/steiner.lgf \
17        demo/sat-2.in
[2400]18
[2108]19if WANT_DEMO
[934]20
[2108]21noinst_PROGRAMS += \
[2389]22        demo/arg_parser_demo \
[2375]23        demo/circulation_demo \
[2360]24        demo/csp_demo \
[2108]25        demo/dim_to_dot \
26        demo/dijkstra_demo \
27        demo/reader_writer_demo \
28        demo/eps_demo \
29        demo/graph_to_eps_demo \
30        demo/graph_orientation \
31        demo/min_route \
32        demo/hello_lemon \
[2195]33        demo/hello_world \
34        demo/maps_summary \
[2108]35        demo/sub_graph_adaptor_demo \
36        demo/descriptor_map_demo \
37        demo/coloring \
38        demo/grid_ugraph_demo \
39        demo/topology_demo \
[2216]40        demo/topological_ordering \
[2108]41        demo/simann_maxcut_demo \
42        demo/disjoint_paths_demo \
[2400]43        demo/strongly_connected_orientation \
[2420]44        demo/steiner_demo \
[2497]45        demo/sat-2
[1349]46
47if HAVE_GLPK
[2497]48noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo demo/mip_demo demo/sat
[1381]49else !HAVE_GLPK
50if HAVE_CPLEX
[2108]51noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo
[1381]52endif HAVE_CPLEX
53endif !HAVE_GLPK
54
[2108]55endif WANT_DEMO
[934]56
[2389]57demo_arg_parser_demo_SOURCES = demo/arg_parser_demo.cc
58
[2360]59demo_csp_demo_SOURCES = demo/csp_demo.cc
60
[2375]61demo_circulation_demo_SOURCES = demo/circulation_demo.cc
62
[2108]63demo_dim_to_dot_SOURCES = demo/dim_to_dot.cc
[934]64
[2108]65demo_dijkstra_demo_SOURCES = demo/dijkstra_demo.cc
[1526]66
[2108]67demo_eps_demo_SOURCES = demo/eps_demo.cc
[1971]68
[2108]69demo_reader_writer_demo_SOURCES = demo/reader_writer_demo.cc
[1528]70
[2108]71demo_coloring_SOURCES = demo/coloring.cc
[1422]72
[2195]73demo_maps_summary_SOURCES = demo/maps_summary.cc
74
[2108]75demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc
[1296]76
[2108]77demo_grid_ugraph_demo_SOURCES = demo/grid_ugraph_demo.cc
[1680]78
[2108]79demo_graph_orientation_SOURCES = demo/graph_orientation.cc
[1678]80
[2108]81demo_min_route_SOURCES = demo/min_route.cc
[1349]82
[2108]83demo_hello_lemon_SOURCES = demo/hello_lemon.cc
[1520]84
[2195]85demo_hello_world_SOURCES = demo/hello_world.cc
86
[2108]87demo_sub_graph_adaptor_demo_SOURCES = \
88        demo/sub_graph_adaptor_demo.cc \
89        demo/tight_edge_filter_map.h
[1349]90
[2108]91demo_lp_demo_SOURCES = demo/lp_demo.cc
92demo_lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
[1361]93
[2147]94demo_mip_demo_SOURCES = demo/mip_demo.cc
95demo_mip_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
96
[2108]97demo_lp_maxflow_demo_SOURCES = demo/lp_maxflow_demo.cc
98demo_lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
[1554]99
[2108]100demo_descriptor_map_demo_SOURCES = demo/descriptor_map_demo.cc
[1802]101
[2108]102demo_topology_demo_SOURCES = demo/topology_demo.cc
[1920]103
[2216]104demo_topological_ordering_SOURCES = demo/topological_ordering.cc
105
[2108]106demo_simann_maxcut_demo_SOURCES = demo/simann_maxcut_demo.cc
[2081]107
[2108]108demo_disjoint_paths_demo_SOURCES = demo/disjoint_paths_demo.cc
[2084]109
[2108]110demo_strongly_connected_orientation_SOURCES = demo/strongly_connected_orientation.cc
[2400]111
[2420]112demo_steiner_demo_SOURCES=demo/steiner_demo.cc
113
114demo_sat_2_SOURCES=demo/sat-2.cc
115
[2494]116demo_sat_SOURCES=demo/sat.cc
117demo_sat_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
Note: See TracBrowser for help on using the repository browser.