LA_library/Makefile.am

24 lines
844 B
Makefile
Raw Normal View History

2009-10-07 16:37:01 +02:00
lib_LIBRARIES = libla.a
include_HEADERS = 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 conjgrad.h gmres.h matexp.h permutation.h sparsemat_traits.h
libla_a_SOURCES = vec.cc mat.cc smat.cc sparsemat.cc laerror.cc noncblas.cc bitvector.cc strassen.cc nonclass.cc
check_PROGRAMS = t test
t_SOURCES = t.cc t2.cc
test_SOURCES = test.cc
LDADD = libla.a
2009-10-07 16:56:32 +02:00
EXTRA_DIST = LICENSE
2009-10-07 16:37:01 +02:00
#
CXXFLAGS += -fno-omit-frame-pointer -O3 -g -fPIC -finline-limit=1000
CXXFLAGS += -DNO_STRASSEN -DFORTRAN_
2009-10-08 16:01:15 +02:00
#remove this for production code efficiency
2009-10-07 16:37:01 +02:00
CXXFLAGS += -DDEBUG
2009-10-08 16:01:15 +02:00
CXXFLAGS += $(CBLASOPT) $(CLAPACKOPT)
2009-10-07 16:37:01 +02:00
LDFLAGS += $(CBLASLIB)
2009-10-08 16:01:15 +02:00
CXXFLAGS += $(TRACEBACKOPT)
2009-10-07 16:37:01 +02:00
LDFLAGS += $(TRACEBACKLIB)