COIN-OR::LEMON - Graph Library

Changeset 2108:f2c532541730 in lemon-0.x for demo/Makefile.am


Ignore:
Timestamp:
06/22/06 20:20:25 (18 years ago)
Author:
Akos Ladanyi
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2802
Message:

Single makefile.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • demo/Makefile.am

    r2084 r2108  
    1 AM_CPPFLAGS = -I$(top_srcdir)
    2 LDADD = $(top_builddir)/lemon/libemon.la
     1EXTRA_DIST += demo/sub_graph_adaptor_demo.dim
    32
    4 EXTRA_DIST = sub_graph_adaptor_demo.dim
     3if WANT_DEMO
    54
    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
     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
    2423
    2524if HAVE_GLPK
    26 noinst_PROGRAMS += lp_demo lp_maxflow_demo
     25noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo
    2726else !HAVE_GLPK
    2827if HAVE_CPLEX
    29 noinst_PROGRAMS += lp_demo lp_maxflow_demo
     28noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo
    3029endif HAVE_CPLEX
    3130endif !HAVE_GLPK
    3231
     32endif WANT_DEMO
    3333
    34 dim_to_dot_SOURCES = dim_to_dot.cc
     34demo_dim_to_dot_SOURCES = demo/dim_to_dot.cc
    3535
    36 dijkstra_demo_SOURCES = dijkstra_demo.cc
     36demo_dijkstra_demo_SOURCES = demo/dijkstra_demo.cc
    3737
    38 eps_demo_SOURCES = eps_demo.cc
     38demo_eps_demo_SOURCES = demo/eps_demo.cc
    3939
    40 reader_writer_demo_SOURCES = reader_writer_demo.cc
     40demo_reader_writer_demo_SOURCES = demo/reader_writer_demo.cc
    4141
    42 dim_to_lgf_SOURCES = dim_to_lgf.cc
     42demo_dim_to_lgf_SOURCES = demo/dim_to_lgf.cc
    4343
    44 coloring_SOURCES = coloring.cc
     44demo_coloring_SOURCES = demo/coloring.cc
    4545
    46 graph_to_eps_demo_SOURCES = graph_to_eps_demo.cc
     46demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc
    4747
    48 grid_ugraph_demo_SOURCES = grid_ugraph_demo.cc
     48demo_grid_ugraph_demo_SOURCES = demo/grid_ugraph_demo.cc
    4949
    50 graph_orientation_SOURCES = graph_orientation.cc
     50demo_graph_orientation_SOURCES = demo/graph_orientation.cc
    5151
    52 min_route_SOURCES = min_route.cc
     52demo_min_route_SOURCES = demo/min_route.cc
    5353
    54 hello_lemon_SOURCES = hello_lemon.cc
     54demo_hello_lemon_SOURCES = demo/hello_lemon.cc
    5555
    56 sub_graph_adaptor_demo_SOURCES = \
    57         sub_graph_adaptor_demo.cc \
    58         tight_edge_filter_map.h
     56demo_sub_graph_adaptor_demo_SOURCES = \
     57        demo/sub_graph_adaptor_demo.cc \
     58        demo/tight_edge_filter_map.h
    5959
    60 lp_demo_SOURCES = lp_demo.cc
    61 lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
     60demo_lp_demo_SOURCES = demo/lp_demo.cc
     61demo_lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    6262
    63 lp_maxflow_demo_SOURCES = lp_maxflow_demo.cc
    64 lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
     63demo_lp_maxflow_demo_SOURCES = demo/lp_maxflow_demo.cc
     64demo_lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    6565
    66 descriptor_map_demo_SOURCES = descriptor_map_demo.cc
     66demo_descriptor_map_demo_SOURCES = demo/descriptor_map_demo.cc
    6767
    68 topology_demo_SOURCES = topology_demo.cc
     68demo_topology_demo_SOURCES = demo/topology_demo.cc
    6969
    70 simann_maxcut_demo_SOURCES = simann_maxcut_demo.cc
     70demo_simann_maxcut_demo_SOURCES = demo/simann_maxcut_demo.cc
    7171
    72 disjoint_paths_demo_SOURCES = disjoint_paths_demo.cc
     72demo_disjoint_paths_demo_SOURCES = demo/disjoint_paths_demo.cc
    7373
    74 strongly_connected_orientation_SOURCES = strongly_connected_orientation.cc
     74demo_strongly_connected_orientation_SOURCES = demo/strongly_connected_orientation.cc
Note: See TracChangeset for help on using the changeset viewer.