*** empty log message ***

This commit is contained in:
jiri
2010-10-22 13:46:59 +00:00
parent 996a7f5275
commit c51cc70e3a
2 changed files with 32 additions and 18 deletions

View File

@@ -1,12 +1,12 @@
lib_LTLIBRARIES = libla.la
include_HEADERS = fortran.h cuda_la.h auxstorage.h davidson.h laerror.h mat.h qsort.h vec.h bisection.h diis.h la.h noncblas.h smat.h bitvector.h fourindex.h la_traits.h nonclass.h sparsemat.h sparsesmat.h conjgrad.h gmres.h matexp.h permutation.h
libla_la_SOURCES = vec.cc mat.cc smat.cc sparsemat.cc sparsesmat.cc laerror.cc noncblas.cc bitvector.cc strassen.cc nonclass.cc cuda_la.cc
include_HEADERS = fortran.h cuda_la.h auxstorage.h davidson.h laerror.h mat.h qsort.h vec.h bisection.h diis.h la.h noncblas.h smat.h bitvector.h fourindex.h la_traits.h nonclass.h sparsemat.h sparsesmat.h csrmat.h conjgrad.h gmres.h matexp.h permutation.h
libla_la_SOURCES = vec.cc mat.cc smat.cc sparsemat.cc sparsesmat.cc csrmat.cc laerror.cc noncblas.cc bitvector.cc strassen.cc nonclass.cc cuda_la.cc
check_PROGRAMS = t test
t_SOURCES = t.cc t2.cc
test_SOURCES = test.cc
LDADD = .libs/libla.a
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = LICENSE
EXTRA_DIST = LICENSE doxygen.cfg aminclude.am acinclude.m4 footer.html
.cu.o:
$(NVCC) -o $@ -c $< $(NVCCFLAGS)
@@ -20,7 +20,10 @@ CXXFLAGS += -DNO_STRASSEN -DFORTRAN_
CXXFLAGS += $(CBLASOPT) $(CLAPACKOPT)
LDFLAGS += $(CBLASLIB)
LDFLAGS += $(BLASLIB)
LDFLAGS += $(ATLASLIB)
CXXFLAGS += $(TRACEBACKOPT)
LDFLAGS += $(CUDALIBS)
LDFLAGS += $(TRACEBACKLIB)
include $(top_srcdir)/aminclude.am