1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
noinst_PROGRAMS = test test_lan
test_SOURCES = \
test.cc
test_LDADD = \
$(top_builddir)/source/matrix/template_lapack/blas/libtemplateblas.a \
$(top_builddir)/source/matrix/template_lapack/lapack/libtemplatelapack.a \
$(top_builddir)/source/matrix/libmat.a \
$(top_builddir)/source/matrix_wrapper/file_tools/src/libfiles.a
test_lan_SOURCES = \
test_lan.cc
test_lan_LDADD = \
$(top_builddir)/source/matrix/template_lapack/blas/libtemplateblas.a \
$(top_builddir)/source/matrix/template_lapack/lapack/libtemplatelapack.a \
$(top_builddir)/source/matrix/libmat.a \
$(top_builddir)/source/matrix_wrapper/file_tools/src/libfiles.a
AM_CPPFLAGS = \
-I$(top_srcdir)/source \
-I$(top_srcdir)/source/basisset \
-I$(top_srcdir)/source/integrals \
-I$(top_srcdir)/source/utilities \
-I$(top_srcdir)/source/utilities_basic \
-I$(top_srcdir)/source/matrix \
-I$(top_srcdir)/source/matrix/template_lapack/blas \
-I$(top_srcdir)/source/matrix/template_lapack/lapack \
-I$(top_srcdir)/source/matrix_wrapper/ErgoMatrix/src \
-I$(top_srcdir)/source/matrix_wrapper/file_tools/src \
-I$(top_srcdir)/source/densfromf/new_purification
|