[00f983] | 1 | LIBSCBASISSOURCES = \
|
---|
[23612c] | 2 | chemistry/qc/basis/aotoso.cc \
|
---|
| 3 | chemistry/qc/basis/cartiter.cc \
|
---|
| 4 | chemistry/qc/basis/dercent.cc \
|
---|
| 5 | chemistry/qc/basis/distshpair.cc \
|
---|
| 6 | chemistry/qc/basis/extent.cc \
|
---|
| 7 | chemistry/qc/basis/files.cc \
|
---|
| 8 | chemistry/qc/basis/gaussbas.cc \
|
---|
| 9 | chemistry/qc/basis/gaussbaval.cc \
|
---|
| 10 | chemistry/qc/basis/gaussshell.cc \
|
---|
| 11 | chemistry/qc/basis/gaussshval.cc \
|
---|
| 12 | chemistry/qc/basis/gpetite.cc \
|
---|
| 13 | chemistry/qc/basis/integral.cc \
|
---|
| 14 | chemistry/qc/basis/obint.cc \
|
---|
| 15 | chemistry/qc/basis/orthog.cc \
|
---|
| 16 | chemistry/qc/basis/petite.cc \
|
---|
| 17 | chemistry/qc/basis/shellrot.cc \
|
---|
| 18 | chemistry/qc/basis/sobasis.cc \
|
---|
| 19 | chemistry/qc/basis/sointegral.cc \
|
---|
| 20 | chemistry/qc/basis/symmint.cc \
|
---|
| 21 | chemistry/qc/basis/tbint.cc \
|
---|
| 22 | chemistry/qc/basis/transform.cc
|
---|
| 23 |
|
---|
| 24 | LIBSCBASISBUILTHEADERS = \
|
---|
| 25 | chemistry/qc/basis/f77sym.h
|
---|
[00f983] | 26 |
|
---|
| 27 | LIBSCBASISHEADERS = \
|
---|
[23612c] | 28 | chemistry/qc/basis/basis.h \
|
---|
| 29 | chemistry/qc/basis/cartiter.h \
|
---|
| 30 | chemistry/qc/basis/dercent.h \
|
---|
| 31 | chemistry/qc/basis/distshpair.h \
|
---|
| 32 | chemistry/qc/basis/extent.h \
|
---|
| 33 | chemistry/qc/basis/files.h \
|
---|
| 34 | chemistry/qc/basis/gaussbas.h \
|
---|
| 35 | chemistry/qc/basis/gaussshell.h \
|
---|
| 36 | chemistry/qc/basis/gpetite.h \
|
---|
| 37 | chemistry/qc/basis/integral.h \
|
---|
| 38 | chemistry/qc/basis/obint.h \
|
---|
| 39 | chemistry/qc/basis/orthog.h \
|
---|
| 40 | chemistry/qc/basis/petite.h \
|
---|
| 41 | chemistry/qc/basis/shellrot.h \
|
---|
| 42 | chemistry/qc/basis/sobasis.h \
|
---|
| 43 | chemistry/qc/basis/sointegral.h \
|
---|
| 44 | chemistry/qc/basis/symmint.h \
|
---|
| 45 | chemistry/qc/basis/tbint.h \
|
---|
| 46 | chemistry/qc/basis/transform.h
|
---|
| 47 |
|
---|
[aae63a] | 48 | BUILT_SOURCES += $(LIBSCBASISBUILTHEADERS)
|
---|
| 49 |
|
---|
| 50 | chemistry/qc/basis/f77sym.h: chemistry/qc/basis/f77sym.in
|
---|
| 51 | $(MKF77SYM) $< $@
|
---|
[00f983] | 52 |
|
---|
| 53 | lib_LTLIBRARIES +=
|
---|
| 54 | noinst_LTLIBRARIES += libSCbasis.la
|
---|
| 55 | libSCbasis_la_includedir = $(includedir)/chemistry/qc/basis
|
---|
| 56 | libSCbasis_la_CPPFLAGS = $(AM_CPPFLAGS)
|
---|
| 57 | libSCbasis_la_LDFLAGS = $(AM_LDFLAGS)
|
---|
[251420] | 58 | libSCbasis_la_LIBADD = $(FLIBS)
|
---|
[00f983] | 59 |
|
---|
| 60 | nobase_libSCbasis_la_include_HEADERS = ${LIBSCBASISHEADERS}
|
---|
| 61 |
|
---|
[aae63a] | 62 | EXTRA_DIST += chemistry/qc/basis/f77sym.in
|
---|
| 63 |
|
---|
[00f983] | 64 | ## Define the source file list for the "libexample-@MPQC_API_VERSION@.la"
|
---|
| 65 | ## target. Note that @MPQC_API_VERSION@ is not interpreted by Automake and
|
---|
| 66 | ## will therefore be treated as if it were literally part of the target name,
|
---|
| 67 | ## and the variable name derived from that.
|
---|
| 68 | ## The file extension .cc is recognized by Automake, and makes it produce
|
---|
| 69 | ## rules which invoke the C++ compiler to produce a libtool object file (.lo)
|
---|
| 70 | ## from each source file. Note that it is not necessary to list header files
|
---|
| 71 | ## which are already listed elsewhere in a _HEADERS variable assignment.
|
---|
| 72 | libSCbasis_la_SOURCES = ${LIBSCBASISSOURCES}
|
---|
| 73 |
|
---|
| 74 | ## Instruct libtool to include ABI version information in the generated shared
|
---|
| 75 | ## library file (.so). The library ABI version is defined in configure.ac, so
|
---|
| 76 | ## that all version information is kept in one place.
|
---|
| 77 | #libSCbasis_la_LDFLAGS += $(AM_LDFLAGS) -version-info $(MPQC_SO_VERSION)
|
---|
| 78 |
|
---|
| 79 | ## The generated configuration header is installed in its own subdirectory of
|
---|
| 80 | ## $(libdir). The reason for this is that the configuration information put
|
---|
| 81 | ## into this header file describes the target platform the installed library
|
---|
| 82 | ## has been built for. Thus the file must not be installed into a location
|
---|
| 83 | ## intended for architecture-independent files, as defined by the Filesystem
|
---|
| 84 | ## Hierarchy Standard (FHS).
|
---|
| 85 | ## The nodist_ prefix instructs Automake to not generate rules for including
|
---|
| 86 | ## the listed files in the distribution on 'make dist'. Files that are listed
|
---|
| 87 | ## in _HEADERS variables are normally included in the distribution, but the
|
---|
| 88 | ## configuration header file is generated at configure time and should not be
|
---|
| 89 | ## shipped with the source tarball.
|
---|
| 90 | #libSCbasis_libincludedir = $(libdir)/chemistry/qc/basis/include
|
---|
| 91 | #nodist_libSCbasis_libinclude_HEADERS = $(top_builddir)/src/lib/scconfig.h
|
---|
| 92 |
|
---|
[23612c] | 93 |
|
---|
[00f983] | 94 | BASISTESTS = \
|
---|
| 95 | btest
|
---|
| 96 |
|
---|
[47b463] | 97 | # ? btest crashes with mpi (also in original implementation)
|
---|
| 98 |
|
---|
[1513599] | 99 | TESTS += $(BASISTESTS)
|
---|
[00f983] | 100 | check_PROGRAMS += $(BASISTESTS)
|
---|
| 101 | noinst_PROGRAMS += $(BASISTESTS)
|
---|
| 102 |
|
---|
| 103 | BASISLIBS = \
|
---|
[251420] | 104 | libSCintv3.la libSCoint3.la libSCbasis.la libSCmolecule.la libSCisosurf.la libSCoptimize.la libSCsymmetry.la libSCrender.la libSCscmat.la libSCgroup.la libSCmisc.la libSCstate.la libSCkeyval.la libSCclass.la libSCcontainer.la libSCref.la
|
---|
[00f983] | 105 |
|
---|
[23612c] | 106 | btest_SOURCES = \
|
---|
| 107 | chemistry/qc/basis/btest.cc
|
---|
[72461c] | 108 | btest_CPPFLAGS = $(AM_CPPFLAGS) -DSRCDIR=\"$(srcdir)/chemistry/qc/basis\"
|
---|
[00f983] | 109 | btest_LDADD = \
|
---|
| 110 | $(BASISLIBS)
|
---|
| 111 |
|
---|
[72461c] | 112 | EXTRA_DIST += ./chemistry/qc/basis/f77sym.in
|
---|
[b7e5b0] | 113 |
|
---|
| 114 | DISTCLEANFILES += \
|
---|
| 115 | chemistry/qc/basis/f77sym.h
|
---|