Browse Source

Always add the LDADD for test, not only when CUDA has doubles

Samuel Thibault 13 years ago
parent
commit
9c76b509b1
1 changed files with 1 additions and 2 deletions
  1. 1 2
      starpufft/Makefile.am

+ 1 - 2
starpufft/Makefile.am

@@ -80,13 +80,12 @@ examples_testf_LDADD = libstarpufft-@STARPU_EFFECTIVE_VERSION@.la $(top_builddir
 # supports double precision.
 if !STARPU_USE_CUDA
 check_PROGRAMS += examples/test
-examples_test_LDADD = libstarpufft-@STARPU_EFFECTIVE_VERSION@.la $(top_builddir)/src/libstarpu-@STARPU_EFFECTIVE_VERSION@.la $(FFTW_LIBS)
 else
 if STARPU_HAVE_CUFFTDOUBLECOMPLEX
 check_PROGRAMS += examples/test
-examples_test_LDADD = libstarpufft-@STARPU_EFFECTIVE_VERSION@.la $(top_builddir)/src/libstarpu-@STARPU_EFFECTIVE_VERSION@.la $(FFTW_LIBS)
 endif
 endif
+examples_test_LDADD = libstarpufft-@STARPU_EFFECTIVE_VERSION@.la $(top_builddir)/src/libstarpu-@STARPU_EFFECTIVE_VERSION@.la $(FFTW_LIBS)
 
 TESTS = $(check_PROGRAMS)