COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/test/Makefile.am @ 1317:83f80464f111

Last change on this file since 1317:83f80464f111 was 1309:b3ce42a4d7d2, checked in by Alpar Juttner, 19 years ago

lp_test added
WARNING: Overall glpk dependency! (we should avoid)

File size: 1.5 KB
Line 
1AM_CPPFLAGS = -I$(top_srcdir)/src
2LDADD = $(top_builddir)/src/lemon/libemon.la -lglpk
3
4EXTRA_DIST = preflow_graph.dim dijkstra_test.lgf
5noinst_HEADERS = \
6        test_tools.h \
7        graph_test.h \
8        sym_graph_test.h \
9        map_test.h \
10        graph_utils_test.h \
11        heap_test.h
12
13check_PROGRAMS = \
14        bfs_test \
15        dfs_test \
16        dijkstra_test \
17        graph_test \
18        graph_wrapper_test \
19        graph_utils_test \
20        kruskal_test \
21        lp_test \
22        max_matching_test \
23        maps_test \
24        min_cost_flow_test \
25        suurballe_test \
26        path_test \
27        preflow_test \
28        test_tools_fail \
29        test_tools_pass \
30        time_measure_test \
31        unionfind_test \
32        undir_graph_test \
33        xy_test \
34        heap_test
35
36TESTS = $(check_PROGRAMS)
37XFAIL_TESTS = test_tools_fail$(EXEEXT)
38
39bfs_test_SOURCES = bfs_test.cc
40dfs_test_SOURCES = dfs_test.cc
41dijkstra_test_SOURCES = dijkstra_test.cc
42graph_test_SOURCES = graph_test.cc
43graph_utils_test_SOURCES = graph_utils_test.cc
44graph_wrapper_test_SOURCES = graph_wrapper_test.cc
45kruskal_test_SOURCES = kruskal_test.cc
46lp_test_SOURCES = lp_test.cc
47maps_test_SOURCES = maps_test.cc
48min_cost_flow_test_SOURCES = min_cost_flow_test.cc
49max_matching_test_SOURCES = max_matching_test.cc
50suurballe_test_SOURCES = suurballe_test.cc
51path_test_SOURCES = path_test.cc
52preflow_test_SOURCES = preflow_test.cc
53time_measure_test_SOURCES = time_measure_test.cc
54test_tools_fail_SOURCES = test_tools_fail.cc
55test_tools_pass_SOURCES = test_tools_pass.cc
56unionfind_test_SOURCES = unionfind_test.cc
57xy_test_SOURCES = xy_test.cc
58undir_graph_test_SOURCES = undir_graph_test.cc
59heap_test_SOURCES = heap_test.cc
Note: See TracBrowser for help on using the repository browser.