demo/Makefile.am
author deba
Wed, 01 Mar 2006 10:17:25 +0000
changeset 1990 15fb7a4ea6be
parent 1971 9a59a6cacfd9
child 2081 94a7deb46c07
permissions -rw-r--r--
Some classes assumed that the GraphMaps should be inherited
from an ObserverBase. These classes parents replaced with
DefaultMap which cause that the graph maps should not be
inherited from the ObserverBase.
     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 	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 
    23 if HAVE_GLPK
    24 noinst_PROGRAMS += lp_demo lp_maxflow_demo
    25 else !HAVE_GLPK
    26 if HAVE_CPLEX
    27 noinst_PROGRAMS += lp_demo lp_maxflow_demo
    28 endif HAVE_CPLEX
    29 endif !HAVE_GLPK
    30 
    31 
    32 dim_to_dot_SOURCES = dim_to_dot.cc
    33 
    34 dijkstra_demo_SOURCES = dijkstra_demo.cc
    35 
    36 eps_demo_SOURCES = eps_demo.cc
    37 
    38 reader_writer_demo_SOURCES = reader_writer_demo.cc
    39 
    40 dim_to_lgf_SOURCES = dim_to_lgf.cc
    41 
    42 coloring_SOURCES = coloring.cc
    43 
    44 graph_to_eps_demo_SOURCES = graph_to_eps_demo.cc
    45 
    46 grid_ugraph_demo_SOURCES = grid_ugraph_demo.cc
    47 
    48 graph_orientation_SOURCES = graph_orientation.cc
    49 
    50 min_route_SOURCES = min_route.cc
    51 
    52 hello_lemon_SOURCES = hello_lemon.cc
    53 
    54 sub_graph_adaptor_demo_SOURCES = \
    55 	sub_graph_adaptor_demo.cc \
    56 	tight_edge_filter_map.h
    57 
    58 lp_demo_SOURCES = lp_demo.cc
    59 lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    60 
    61 lp_maxflow_demo_SOURCES = lp_maxflow_demo.cc
    62 lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    63 
    64 descriptor_map_demo_SOURCES = descriptor_map_demo.cc
    65 
    66 topology_demo_SOURCES = topology_demo.cc
    67 
    68 simann_maxcut_demo_SOURCES = simann_maxcut_demo.cc