COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/demo/Makefile.am @ 1380:cb2891afe526

Last change on this file since 1380:cb2891afe526 was 1362:b4330c52caeb, checked in by Alpar Juttner, 19 years ago
  • Adding new lp_demo.cc finished
  • Several 'unused variable' warnings fixed in 'lp_skeleton.cc'
File size: 758 bytes
RevLine 
[934]1AM_CPPFLAGS = -I$(top_srcdir)/src
[1324]2LDADD = $(top_builddir)/src/lemon/libemon.la
[1349]3
[934]4EXTRA_DIST = sub_graph_wrapper_demo.dim
5
[1349]6noinst_PROGRAMS = \
7        dim_to_dot \
8        dim_to_lgf \
9        graph_to_eps_demo \
10        min_route \
11        sub_graph_wrapper_demo
12
13if HAVE_GLPK
[1361]14noinst_PROGRAMS += lp_demo lp_maxflow_demo
[1349]15endif
[934]16
17dim_to_dot_SOURCES = dim_to_dot.cc
18
[1349]19dim_to_lgf_SOURCES = dim_to_lgf.cc
[1073]20
[1296]21graph_to_eps_demo_SOURCES = graph_to_eps_demo.cc
22
[1349]23min_route_SOURCES = min_route.cc
24
25sub_graph_wrapper_demo_SOURCES = \
26        sub_graph_wrapper_demo.cc \
27        tight_edge_filter_map.h
28
[1322]29lp_demo_SOURCES = lp_demo.cc
[1349]30lp_demo_CXXFLAGS = $(GLPK_CFLAGS)
31lp_demo_LDFLAGS = $(GLPK_LIBS)
[1361]32
[1362]33lp_maxflow_demo_SOURCES = lp_maxflow_demo.cc
34lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS)
35lp_maxflow_demo_LDFLAGS = $(GLPK_LIBS)
Note: See TracBrowser for help on using the repository browser.