COIN-OR::LEMON - Graph Library

source: lemon-0.x/test/Makefile.am @ 1822:218eeb873259

Last change on this file since 1822:218eeb873259 was 1822:218eeb873259, checked in by Balazs Dezso, 18 years ago

Erasing from the Makefile.am too

File size: 1.8 KB
Line 
1AM_CPPFLAGS = -I$(top_srcdir) -fno-inline
2LDADD = $(top_builddir)/lemon/libemon.la
3
4EXTRA_DIST = preflow_graph.dim dijkstra_test.lgf
5
6noinst_HEADERS = \
7        test_tools.h \
8        graph_test.h \
9        map_test.h \
10        graph_utils_test.h \
11        heap_test.h
12
13check_PROGRAMS = \
14        all_pairs_shortest_path_test \
15        bfs_test \
16        dfs_test \
17        dijkstra_test \
18        graph_test \
19        graph_adaptor_test \
20        graph_utils_test \
21        kruskal_test \
22        max_matching_test \
23        maps_test \
24        matrix_maps_test \
25        min_cost_flow_test \
26        suurballe_test \
27        path_test \
28        preflow_test \
29        test_tools_fail \
30        test_tools_pass \
31        time_measure_test \
32        unionfind_test \
33        undir_graph_test \
34        xy_test \
35        heap_test
36
37if HAVE_GLPK
38check_PROGRAMS += lp_test
39else !HAVE_GLPK
40if HAVE_CPLEX
41check_PROGRAMS += lp_test
42endif HAVE_CPLEX
43endif !HAVE_GLPK
44
45TESTS = $(check_PROGRAMS)
46XFAIL_TESTS = test_tools_fail$(EXEEXT)
47
48all_pairs_shortest_path_test_SOURCES = all_pairs_shortest_path_test.cc
49bfs_test_SOURCES = bfs_test.cc
50dfs_test_SOURCES = dfs_test.cc
51dijkstra_test_SOURCES = dijkstra_test.cc
52graph_test_SOURCES = graph_test.cc
53graph_utils_test_SOURCES = graph_utils_test.cc
54graph_adaptor_test_SOURCES = graph_adaptor_test.cc
55kruskal_test_SOURCES = kruskal_test.cc
56maps_test_SOURCES = maps_test.cc
57matrix_maps_test_SOURCES = matrix_maps_test.cc
58min_cost_flow_test_SOURCES = min_cost_flow_test.cc
59max_matching_test_SOURCES = max_matching_test.cc
60suurballe_test_SOURCES = suurballe_test.cc
61path_test_SOURCES = path_test.cc
62preflow_test_SOURCES = preflow_test.cc
63time_measure_test_SOURCES = time_measure_test.cc
64test_tools_fail_SOURCES = test_tools_fail.cc
65test_tools_pass_SOURCES = test_tools_pass.cc
66unionfind_test_SOURCES = unionfind_test.cc
67xy_test_SOURCES = xy_test.cc
68undir_graph_test_SOURCES = undir_graph_test.cc
69heap_test_SOURCES = heap_test.cc
70
71lp_test_SOURCES = lp_test.cc
72lp_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
Note: See TracBrowser for help on using the repository browser.