| 1 | LIBSCSCFSOURCES = \
|
|---|
| 2 | chemistry/qc/scf/clhf.cc \
|
|---|
| 3 | chemistry/qc/scf/clscf.cc \
|
|---|
| 4 | chemistry/qc/scf/effh.cc \
|
|---|
| 5 | chemistry/qc/scf/hsoshf.cc \
|
|---|
| 6 | chemistry/qc/scf/hsosscf.cc \
|
|---|
| 7 | chemistry/qc/scf/osshf.cc \
|
|---|
| 8 | chemistry/qc/scf/ossscf.cc \
|
|---|
| 9 | chemistry/qc/scf/scf.cc \
|
|---|
| 10 | chemistry/qc/scf/scfgradient.cc \
|
|---|
| 11 | chemistry/qc/scf/scfops.cc \
|
|---|
| 12 | chemistry/qc/scf/scfvector.cc \
|
|---|
| 13 | chemistry/qc/scf/svd.cc \
|
|---|
| 14 | chemistry/qc/scf/tchf.cc \
|
|---|
| 15 | chemistry/qc/scf/tcscf.cc \
|
|---|
| 16 | chemistry/qc/scf/tmplinst.cc \
|
|---|
| 17 | chemistry/qc/scf/uhf.cc \
|
|---|
| 18 | chemistry/qc/scf/uscf.cc
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 | LIBSCSCFHEADERS = \
|
|---|
| 22 | chemistry/qc/scf/clhf.h \
|
|---|
| 23 | chemistry/qc/scf/clhftmpl.h \
|
|---|
| 24 | chemistry/qc/scf/clscf.h \
|
|---|
| 25 | chemistry/qc/scf/effh.h \
|
|---|
| 26 | chemistry/qc/scf/gbuild.h \
|
|---|
| 27 | chemistry/qc/scf/hsoshf.h \
|
|---|
| 28 | chemistry/qc/scf/hsoshftmpl.h \
|
|---|
| 29 | chemistry/qc/scf/hsosscf.h \
|
|---|
| 30 | chemistry/qc/scf/lbgbuild.h \
|
|---|
| 31 | chemistry/qc/scf/lgbuild.h \
|
|---|
| 32 | chemistry/qc/scf/linkage.h \
|
|---|
| 33 | chemistry/qc/scf/ltbgrad.h \
|
|---|
| 34 | chemistry/qc/scf/osshf.h \
|
|---|
| 35 | chemistry/qc/scf/osshftmpl.h \
|
|---|
| 36 | chemistry/qc/scf/ossscf.h \
|
|---|
| 37 | chemistry/qc/scf/scf.h \
|
|---|
| 38 | chemistry/qc/scf/scflocal.h \
|
|---|
| 39 | chemistry/qc/scf/scfops.h \
|
|---|
| 40 | chemistry/qc/scf/tbgrad.h \
|
|---|
| 41 | chemistry/qc/scf/tchf.h \
|
|---|
| 42 | chemistry/qc/scf/tchftmpl.h \
|
|---|
| 43 | chemistry/qc/scf/tcscf.h \
|
|---|
| 44 | chemistry/qc/scf/uhf.h \
|
|---|
| 45 | chemistry/qc/scf/uhftmpl.h \
|
|---|
| 46 | chemistry/qc/scf/uscf.h
|
|---|
| 47 |
|
|---|
| 48 |
|
|---|
| 49 | lib_LTLIBRARIES +=
|
|---|
| 50 | noinst_LTLIBRARIES += libSCscf.la
|
|---|
| 51 | libSCscf_la_includedir = $(includedir)/chemistry/qc/scf
|
|---|
| 52 | libSCscf_la_CPPFLAGS = $(AM_CPPFLAGS)
|
|---|
| 53 | libSCscf_la_LDFLAGS = $(AM_LDFLAGS)
|
|---|
| 54 | libSCscf_la_LIBADD =
|
|---|
| 55 |
|
|---|
| 56 | nobase_libSCscf_la_include_HEADERS = ${LIBSCSCFHEADERS}
|
|---|
| 57 |
|
|---|
| 58 | ## Define the source file list for the "libexample-@MPQC_API_VERSION@.la"
|
|---|
| 59 | ## target. Note that @MPQC_API_VERSION@ is not interpreted by Automake and
|
|---|
| 60 | ## will therefore be treated as if it were literally part of the target name,
|
|---|
| 61 | ## and the variable name derived from that.
|
|---|
| 62 | ## The file extension .cc is recognized by Automake, and makes it produce
|
|---|
| 63 | ## rules which invoke the C++ compiler to produce a libtool object file (.lo)
|
|---|
| 64 | ## from each source file. Note that it is not necessary to list header files
|
|---|
| 65 | ## which are already listed elsewhere in a _HEADERS variable assignment.
|
|---|
| 66 | libSCscf_la_SOURCES = ${LIBSCSCFSOURCES}
|
|---|
| 67 |
|
|---|
| 68 | ## Instruct libtool to include ABI version information in the generated shared
|
|---|
| 69 | ## library file (.so). The library ABI version is defined in configure.ac, so
|
|---|
| 70 | ## that all version information is kept in one place.
|
|---|
| 71 | #libSCscf_la_LDFLAGS += $(AM_LDFLAGS) -version-info $(MPQC_SO_VERSION)
|
|---|
| 72 |
|
|---|
| 73 | ## The generated configuration header is installed in its own subdirectory of
|
|---|
| 74 | ## $(libdir). The reason for this is that the configuration information put
|
|---|
| 75 | ## into this header file describes the target platform the installed library
|
|---|
| 76 | ## has been built for. Thus the file must not be installed into a location
|
|---|
| 77 | ## intended for architecture-independent files, as defined by the Filesystem
|
|---|
| 78 | ## Hierarchy Standard (FHS).
|
|---|
| 79 | ## The nodist_ prefix instructs Automake to not generate rules for including
|
|---|
| 80 | ## the listed files in the distribution on 'make dist'. Files that are listed
|
|---|
| 81 | ## in _HEADERS variables are normally included in the distribution, but the
|
|---|
| 82 | ## configuration header file is generated at configure time and should not be
|
|---|
| 83 | ## shipped with the source tarball.
|
|---|
| 84 | #libSCscf_libincludedir = $(libdir)/chemistry/qc/scf/include
|
|---|
| 85 | #nodist_libSCscf_libinclude_HEADERS = $(top_builddir)/src/lib/scconfig.h
|
|---|
| 86 |
|
|---|
| 87 |
|
|---|
| 88 | SCFTESTS = \
|
|---|
| 89 | scftest
|
|---|
| 90 |
|
|---|
| 91 | check_PROGRAMS += $(SCFTESTS)
|
|---|
| 92 | noinst_PROGRAMS += $(SCFTESTS)
|
|---|
| 93 |
|
|---|
| 94 | SCFLIBS = \
|
|---|
| 95 | libSCkeyval.la \
|
|---|
| 96 | libSCgroup.la libSCscf.la libSCclass.la \
|
|---|
| 97 | libSCcontainer.la libSCref.la libSCmisc.la
|
|---|
| 98 |
|
|---|
| 99 | scftest_SOURCES = \
|
|---|
| 100 | chemistry/qc/scf/scftest.cc
|
|---|
| 101 | scftest_LDADD = \
|
|---|
| 102 | $(SCFLIBS)
|
|---|
| 103 |
|
|---|
| 104 |
|
|---|