test/Makefile.am
changeset 1711 1d09b48e8d55
parent 1435 8e85e6bbefdf
child 1728 eb8bb91ba9e2
     1.1 --- a/test/Makefile.am	Thu Oct 06 09:37:53 2005 +0000
     1.2 +++ b/test/Makefile.am	Thu Oct 06 09:57:23 2005 +0000
     1.3 @@ -1,4 +1,4 @@
     1.4 -AM_CPPFLAGS = -I$(top_srcdir)
     1.5 +AM_CPPFLAGS = -I$(top_srcdir) -fno-inline
     1.6  LDADD = $(top_builddir)/lemon/libemon.la
     1.7  
     1.8  EXTRA_DIST = preflow_graph.dim dijkstra_test.lgf
     1.9 @@ -12,6 +12,7 @@
    1.10  	heap_test.h
    1.11  
    1.12  check_PROGRAMS = \
    1.13 +	all_pairs_shortest_path_test \
    1.14  	bfs_test \
    1.15  	dfs_test \
    1.16  	dijkstra_test \
    1.17 @@ -44,6 +45,7 @@
    1.18  TESTS = $(check_PROGRAMS)
    1.19  XFAIL_TESTS = test_tools_fail$(EXEEXT)
    1.20  
    1.21 +all_pairs_shortest_path_test_SOURCES = all_pairs_shortest_path_test.cc
    1.22  bfs_test_SOURCES = bfs_test.cc
    1.23  dfs_test_SOURCES = dfs_test.cc
    1.24  dijkstra_test_SOURCES = dijkstra_test.cc