[00f983] | 1 | LIBSCCINTSSOURCES = \
|
---|
[23612c] | 2 | chemistry/qc/cints/cints.cc \
|
---|
| 3 | chemistry/qc/cints/comp_eri.cc \
|
---|
| 4 | chemistry/qc/cints/comp_grt.cc \
|
---|
| 5 | chemistry/qc/cints/edipole.cc \
|
---|
| 6 | chemistry/qc/cints/equadrupole.cc \
|
---|
| 7 | chemistry/qc/cints/eri.cc \
|
---|
| 8 | chemistry/qc/cints/fjt.cc \
|
---|
| 9 | chemistry/qc/cints/grt.cc \
|
---|
| 10 | chemistry/qc/cints/hcore.cc \
|
---|
| 11 | chemistry/qc/cints/int1e.cc \
|
---|
| 12 | chemistry/qc/cints/int2e.cc \
|
---|
| 13 | chemistry/qc/cints/kinetic.cc \
|
---|
| 14 | chemistry/qc/cints/nuclear.cc \
|
---|
| 15 | chemistry/qc/cints/obintcints.cc \
|
---|
| 16 | chemistry/qc/cints/obosrr.cc \
|
---|
| 17 | chemistry/qc/cints/overlap.cc \
|
---|
| 18 | chemistry/qc/cints/permute2e.cc \
|
---|
| 19 | chemistry/qc/cints/primpairs.cc \
|
---|
| 20 | chemistry/qc/cints/shellpairs.cc \
|
---|
| 21 | chemistry/qc/cints/storage.cc \
|
---|
| 22 | chemistry/qc/cints/tbintcints.cc \
|
---|
| 23 | chemistry/qc/cints/tform.cc
|
---|
| 24 |
|
---|
[00f983] | 25 |
|
---|
| 26 | LIBSCCINTSHEADERS = \
|
---|
[23612c] | 27 | chemistry/qc/cints/cartit.h \
|
---|
| 28 | chemistry/qc/cints/cints.h \
|
---|
| 29 | chemistry/qc/cints/eri.h \
|
---|
| 30 | chemistry/qc/cints/eri_quartet_data.h \
|
---|
| 31 | chemistry/qc/cints/fjt.h \
|
---|
| 32 | chemistry/qc/cints/grt.h \
|
---|
| 33 | chemistry/qc/cints/grt_quartet_data.h \
|
---|
| 34 | chemistry/qc/cints/int1e.h \
|
---|
| 35 | chemistry/qc/cints/int2e.h \
|
---|
| 36 | chemistry/qc/cints/linkage.h \
|
---|
| 37 | chemistry/qc/cints/macros.h \
|
---|
| 38 | chemistry/qc/cints/obintcints.h \
|
---|
| 39 | chemistry/qc/cints/primpairs.h \
|
---|
| 40 | chemistry/qc/cints/shellpairs.h \
|
---|
| 41 | chemistry/qc/cints/static.h \
|
---|
| 42 | chemistry/qc/cints/storage.h \
|
---|
| 43 | chemistry/qc/cints/tbintcints.h \
|
---|
| 44 | chemistry/qc/cints/tform.h
|
---|
| 45 |
|
---|
[00f983] | 46 |
|
---|
| 47 | lib_LTLIBRARIES +=
|
---|
| 48 | noinst_LTLIBRARIES += libSCcints.la
|
---|
| 49 | libSCcints_la_includedir = $(includedir)/chemistry/qc/cints
|
---|
| 50 | libSCcints_la_CPPFLAGS = $(AM_CPPFLAGS)
|
---|
| 51 | libSCcints_la_LDFLAGS = $(AM_LDFLAGS)
|
---|
| 52 | libSCcints_la_LIBADD =
|
---|
| 53 |
|
---|
| 54 | nobase_libSCcints_la_include_HEADERS = ${LIBSCCINTSHEADERS}
|
---|
| 55 |
|
---|
| 56 | ## Define the source file list for the "libexample-@MPQC_API_VERSION@.la"
|
---|
| 57 | ## target. Note that @MPQC_API_VERSION@ is not interpreted by Automake and
|
---|
| 58 | ## will therefore be treated as if it were literally part of the target name,
|
---|
| 59 | ## and the variable name derived from that.
|
---|
| 60 | ## The file extension .cc is recognized by Automake, and makes it produce
|
---|
| 61 | ## rules which invoke the C++ compiler to produce a libtool object file (.lo)
|
---|
| 62 | ## from each source file. Note that it is not necessary to list header files
|
---|
| 63 | ## which are already listed elsewhere in a _HEADERS variable assignment.
|
---|
| 64 | libSCcints_la_SOURCES = ${LIBSCCINTSSOURCES}
|
---|
| 65 |
|
---|
| 66 | ## Instruct libtool to include ABI version information in the generated shared
|
---|
| 67 | ## library file (.so). The library ABI version is defined in configure.ac, so
|
---|
| 68 | ## that all version information is kept in one place.
|
---|
| 69 | #libSCcints_la_LDFLAGS += $(AM_LDFLAGS) -version-info $(MPQC_SO_VERSION)
|
---|
| 70 |
|
---|
| 71 | ## The generated configuration header is installed in its own subdirectory of
|
---|
| 72 | ## $(libdir). The reason for this is that the configuration information put
|
---|
| 73 | ## into this header file describes the target platform the installed library
|
---|
| 74 | ## has been built for. Thus the file must not be installed into a location
|
---|
| 75 | ## intended for architecture-independent files, as defined by the Filesystem
|
---|
| 76 | ## Hierarchy Standard (FHS).
|
---|
| 77 | ## The nodist_ prefix instructs Automake to not generate rules for including
|
---|
| 78 | ## the listed files in the distribution on 'make dist'. Files that are listed
|
---|
| 79 | ## in _HEADERS variables are normally included in the distribution, but the
|
---|
| 80 | ## configuration header file is generated at configure time and should not be
|
---|
| 81 | ## shipped with the source tarball.
|
---|
| 82 | #libSCcints_libincludedir = $(libdir)/chemistry/qc/cints/include
|
---|
| 83 | #nodist_libSCcints_libinclude_HEADERS = $(top_builddir)/src/lib/scconfig.h
|
---|
| 84 |
|
---|
[23612c] | 85 |
|
---|
[00f983] | 86 | CINTSTESTS = \
|
---|
| 87 | cintstest
|
---|
| 88 |
|
---|
[1513599] | 89 | TESTS += $(CINTSTESTS)
|
---|
[00f983] | 90 | check_PROGRAMS += $(CINTSTESTS)
|
---|
| 91 | noinst_PROGRAMS += $(CINTSTESTS)
|
---|
| 92 |
|
---|
| 93 | CINTSLIBS = \
|
---|
[251420] | 94 | libSCcints.la libSCintv3.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 libSCoint3.la
|
---|
[00f983] | 95 |
|
---|
[23612c] | 96 | cintstest_SOURCES = \
|
---|
| 97 | chemistry/qc/cints/cintstest.cc
|
---|
[72461c] | 98 | cintstest_CPPFLAGS = $(AM_CPPFLAGS) -DSRCDIR=\"$(srcdir)/chemistry/qc/cints\"
|
---|
[00f983] | 99 | cintstest_LDADD = \
|
---|
| 100 | $(CINTSLIBS)
|
---|
| 101 |
|
---|
[bbc982] | 102 | if COND_LIBINT
|
---|
| 103 | cintstest_LDADD += -lint
|
---|
| 104 | endif
|
---|
| 105 | if COND_LIBR12
|
---|
| 106 | cintstest_LDADD += -lr12
|
---|
| 107 | endif
|
---|
| 108 | if COND_LIBDERIV
|
---|
| 109 | cintstest_LDADD += -lderiv
|
---|
| 110 | endif
|
---|
[00f983] | 111 |
|
---|
[72461c] | 112 | EXTRA_DIST += ./chemistry/qc/cints/cintstest.in
|
---|