test/Makefile.am
changeset 1435 8e85e6bbefdf
parent 1401 9588dcef6793
child 1711 1d09b48e8d55
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/test/Makefile.am	Mon May 23 04:48:14 2005 +0000
     1.3 @@ -0,0 +1,69 @@
     1.4 +AM_CPPFLAGS = -I$(top_srcdir)
     1.5 +LDADD = $(top_builddir)/lemon/libemon.la
     1.6 +
     1.7 +EXTRA_DIST = preflow_graph.dim dijkstra_test.lgf
     1.8 +
     1.9 +noinst_HEADERS = \
    1.10 +	test_tools.h \
    1.11 +	graph_test.h \
    1.12 +	sym_graph_test.h \
    1.13 +	map_test.h \
    1.14 +	graph_utils_test.h \
    1.15 +	heap_test.h
    1.16 +
    1.17 +check_PROGRAMS = \
    1.18 +	bfs_test \
    1.19 +	dfs_test \
    1.20 +	dijkstra_test \
    1.21 +	graph_test \
    1.22 +	graph_adaptor_test \
    1.23 +	graph_utils_test \
    1.24 +	kruskal_test \
    1.25 +	max_matching_test \
    1.26 +	maps_test \
    1.27 +	min_cost_flow_test \
    1.28 +	suurballe_test \
    1.29 +	path_test \
    1.30 +	preflow_test \
    1.31 +	test_tools_fail \
    1.32 +	test_tools_pass \
    1.33 +	time_measure_test \
    1.34 +	unionfind_test \
    1.35 +	undir_graph_test \
    1.36 +	xy_test \
    1.37 +	heap_test
    1.38 +
    1.39 +if HAVE_GLPK
    1.40 +check_PROGRAMS += lp_test
    1.41 +else !HAVE_GLPK
    1.42 +if HAVE_CPLEX
    1.43 +check_PROGRAMS += lp_test
    1.44 +endif HAVE_CPLEX
    1.45 +endif !HAVE_GLPK
    1.46 +
    1.47 +TESTS = $(check_PROGRAMS)
    1.48 +XFAIL_TESTS = test_tools_fail$(EXEEXT)
    1.49 +
    1.50 +bfs_test_SOURCES = bfs_test.cc
    1.51 +dfs_test_SOURCES = dfs_test.cc
    1.52 +dijkstra_test_SOURCES = dijkstra_test.cc
    1.53 +graph_test_SOURCES = graph_test.cc
    1.54 +graph_utils_test_SOURCES = graph_utils_test.cc
    1.55 +graph_adaptor_test_SOURCES = graph_adaptor_test.cc
    1.56 +kruskal_test_SOURCES = kruskal_test.cc
    1.57 +maps_test_SOURCES = maps_test.cc
    1.58 +min_cost_flow_test_SOURCES = min_cost_flow_test.cc
    1.59 +max_matching_test_SOURCES = max_matching_test.cc
    1.60 +suurballe_test_SOURCES = suurballe_test.cc
    1.61 +path_test_SOURCES = path_test.cc
    1.62 +preflow_test_SOURCES = preflow_test.cc
    1.63 +time_measure_test_SOURCES = time_measure_test.cc
    1.64 +test_tools_fail_SOURCES = test_tools_fail.cc
    1.65 +test_tools_pass_SOURCES = test_tools_pass.cc
    1.66 +unionfind_test_SOURCES = unionfind_test.cc
    1.67 +xy_test_SOURCES = xy_test.cc
    1.68 +undir_graph_test_SOURCES = undir_graph_test.cc
    1.69 +heap_test_SOURCES = heap_test.cc
    1.70 +
    1.71 +lp_test_SOURCES = lp_test.cc
    1.72 +lp_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)