demo/Makefile.am
author hegyi
Thu, 05 Jan 2006 12:30:09 +0000
changeset 1878 409a31271efd
parent 1680 4f8b9cee576b
child 1920 e9e27c5a53bf
permissions -rw-r--r--
Several changes. \n If new map is added to mapstorage it emits signal with the name of the new map. This was important, because from now on not only tha mapwin should be updated. \n Furthermore algobox gets a pointer to mapstorage instead of only the mapnames from it. This is important because without it it would be complicated to pass all of the required maps to algobox.
     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 	graph_to_eps_demo \
    12 	graph_orientation \
    13 	min_route \
    14 	hello_lemon \
    15 	sub_graph_adaptor_demo \
    16 	descriptor_map_demo \
    17 	coloring \
    18 	grid_graph_demo \
    19 	topology_demo
    20 
    21 if HAVE_GLPK
    22 noinst_PROGRAMS += lp_demo lp_maxflow_demo
    23 else !HAVE_GLPK
    24 if HAVE_CPLEX
    25 noinst_PROGRAMS += lp_demo lp_maxflow_demo
    26 endif HAVE_CPLEX
    27 endif !HAVE_GLPK
    28 
    29 
    30 dim_to_dot_SOURCES = dim_to_dot.cc
    31 
    32 dijkstra_demo_SOURCES = dijkstra_demo.cc
    33 
    34 reader_writer_demo_SOURCES = reader_writer_demo.cc
    35 
    36 dim_to_lgf_SOURCES = dim_to_lgf.cc
    37 
    38 coloring_SOURCES = coloring.cc
    39 
    40 graph_to_eps_demo_SOURCES = graph_to_eps_demo.cc
    41 
    42 grid_graph_demo_SOURCES = grid_graph_demo.cc
    43 
    44 graph_orientation_SOURCES = graph_orientation.cc
    45 
    46 min_route_SOURCES = min_route.cc
    47 
    48 hello_lemon_SOURCES = hello_lemon.cc
    49 
    50 sub_graph_adaptor_demo_SOURCES = \
    51 	sub_graph_adaptor_demo.cc \
    52 	tight_edge_filter_map.h
    53 
    54 lp_demo_SOURCES = lp_demo.cc
    55 lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    56 
    57 lp_maxflow_demo_SOURCES = lp_maxflow_demo.cc
    58 lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    59 
    60 descriptor_map_demo_SOURCES = descriptor_map_demo.cc
    61 
    62 topology_demo_SOURCES = topology_demo.cc