LIBSCSCMATSOURCES = \ math/scmat/abstract.cc \ math/scmat/blkiter.cc \ math/scmat/block.cc \ math/scmat/blocked.cc \ math/scmat/blockeddiag.cc \ math/scmat/blockedrect.cc \ math/scmat/blockedsymm.cc \ math/scmat/blockedvect.cc \ math/scmat/cmatrix.c \ math/scmat/dim.cc \ math/scmat/dist.cc \ math/scmat/distdiag.cc \ math/scmat/disthql.cc \ math/scmat/distrect.cc \ math/scmat/distsymm.cc \ math/scmat/distvect.cc \ math/scmat/elemop.cc \ math/scmat/local.cc \ math/scmat/localdiag.cc \ math/scmat/localrect.cc \ math/scmat/localsymm.cc \ math/scmat/localvect.cc \ math/scmat/matrix3.cc \ math/scmat/matrix.cc \ math/scmat/matrix_i.cc \ math/scmat/pdsteqr.f \ math/scmat/repl.cc \ math/scmat/repldiag.cc \ math/scmat/replrect.cc \ math/scmat/replsymm.cc \ math/scmat/replvect.cc \ math/scmat/result.cc \ math/scmat/svd.c \ math/scmat/util.cc \ math/scmat/vector3.cc \ math/scmat/vector3_i.cc LIBSCSCMATBUILTHEADERS = \ math/scmat/f77sym.h LIBSCSCMATHEADERS = \ math/scmat/abstract.h \ math/scmat/blkiter.h \ math/scmat/blocked.h \ math/scmat/block.h \ math/scmat/cmatrix.h \ math/scmat/dim.h \ math/scmat/dist.h \ math/scmat/disthql.h \ math/scmat/elemop.h \ math/scmat/linkage.h \ math/scmat/local.h \ math/scmat/matrix3.h \ math/scmat/matrix.h \ math/scmat/matrix_i.h \ math/scmat/mops.h \ math/scmat/offset.h \ math/scmat/repl.h \ math/scmat/result.h \ math/scmat/util.h \ math/scmat/vector3.h \ math/scmat/vector3_i.h BUILT_SOURCES += $(LIBSCSCMATBUILTHEADERS) math/scmat/f77sym.h: math/scmat/f77sym.in $(MKF77SYM) $< $@ lib_LTLIBRARIES += noinst_LTLIBRARIES += libSCscmat.la libSCscmat_matrixtest.la libSCscmat_la_includedir = $(includedir)/math/scmat libSCscmat_matrixtest_la_CPPFLAGS = $(AM_CPPFLAGS) libSCscmat_matrixtest_la_LDFLAGS = $(AM_LDFLAGS) libSCscmat_matrixtest_la_LIBADD = libSCscmat_la_CPPFLAGS = $(AM_CPPFLAGS) libSCscmat_la_LDFLAGS = $(AM_LDFLAGS) libSCscmat_la_LIBADD = nobase_libSCscmat_la_include_HEADERS = ${LIBSCSCMATHEADERS} EXTRA_DIST += $(LIBSCSCMATBUILTHEADERS) ## Define the source file list for the "libexample-@MPQC_API_VERSION@.la" ## target. Note that @MPQC_API_VERSION@ is not interpreted by Automake and ## will therefore be treated as if it were literally part of the target name, ## and the variable name derived from that. ## The file extension .cc is recognized by Automake, and makes it produce ## rules which invoke the C++ compiler to produce a libtool object file (.lo) ## from each source file. Note that it is not necessary to list header files ## which are already listed elsewhere in a _HEADERS variable assignment. libSCscmat_la_SOURCES = ${LIBSCSCMATSOURCES} libSCscmat_matrixtest_la_SOURCES = math/scmat/matrixtest.cc ## Instruct libtool to include ABI version information in the generated shared ## library file (.so). The library ABI version is defined in configure.ac, so ## that all version information is kept in one place. #libSCscmat_la_LDFLAGS += $(AM_LDFLAGS) -version-info $(MPQC_SO_VERSION) ## The generated configuration header is installed in its own subdirectory of ## $(libdir). The reason for this is that the configuration information put ## into this header file describes the target platform the installed library ## has been built for. Thus the file must not be installed into a location ## intended for architecture-independent files, as defined by the Filesystem ## Hierarchy Standard (FHS). ## The nodist_ prefix instructs Automake to not generate rules for including ## the listed files in the distribution on 'make dist'. Files that are listed ## in _HEADERS variables are normally included in the distribution, but the ## configuration header file is generated at configure time and should not be ## shipped with the source tarball. #libSCscmat_libincludedir = $(libdir)/math/scmat/include #nodist_libSCscmat_libinclude_HEADERS = $(top_builddir)/src/lib/scconfig.h SCMATTESTS = \ localtest \ repltest \ disttest \ blockedtest TESTS += $(SCMATTESTS) check_PROGRAMS += $(SCMATTESTS) noinst_PROGRAMS += $(SCMATTESTS) SCMATLIBS = \ libSCscmat.la libSCgroup.la libSCmisc.la libSCstate.la libSCkeyval.la libSCclass.la libSCcontainer.la libSCref.la localtest_SOURCES = \ math/scmat/localtest.cc localtest_CPPFLAGS = $(AM_CPPFLAGS) -DSRCDIR=\"$(srcdir)/math/scmat\" localtest_LDADD = \ libSCscmat_matrixtest.la \ $(SCMATLIBS) repltest_SOURCES = \ math/scmat/repltest.cc repltest_CPPFLAGS = $(AM_CPPFLAGS) -DSRCDIR=\"$(srcdir)/math/scmat\" repltest_LDADD = \ libSCscmat_matrixtest.la \ $(SCMATLIBS) disttest_SOURCES = \ math/scmat/disttest.cc disttest_CPPFLAGS = $(AM_CPPFLAGS) -DSRCDIR=\"$(srcdir)/math/scmat\" disttest_LDADD = \ libSCscmat_matrixtest.la \ $(SCMATLIBS) blockedtest_SOURCES = \ math/scmat/blockedtest.cc blockedtest_CPPFLAGS = $(AM_CPPFLAGS) -DSRCDIR=\"$(srcdir)/math/scmat\" blockedtest_LDADD = \ libSCscmat_matrixtest.la \ $(SCMATLIBS) EXTRA_DIST += ./math/scmat/f77sym.in EXTRA_DIST += ./math/scmat/matrixtest.in