| 1 | LIBSCOINT3SOURCES = \
|
|---|
| 2 | build.cc i0100AB.cc i0100.cc i0101AB.cc i0101.cc i0111AB.cc i0111.cc i0200AB.cc i0200.cc i0201AB.cc i0201.cc i0202AB.cc i0202.cc i0211AB.cc i0211.cc i0212AB.cc i0212.cc i0222AB.cc i0222.cc i0300AB.cc i0300.cc i0301AB.cc i0301.cc i0302AB.cc i0302.cc i0303AB.cc i0303.cc i0311AB.cc i0311.cc i0312AB.cc i0312.cc i0313AB.cc i0313.cc i0322AB.cc i0322.cc i0323AB.cc i0323.cc i0333AB.cc i0333.cc i1100AB.cc i1100.cc i1111AB.cc i1111.cc i1200AB.cc i1200.cc i1201AB.cc i1201.cc i1211AB.cc i1211.cc i1212AB.cc i1212.cc i1222AB.cc i1222.cc i1300AB.cc i1300.cc i1301AB.cc i1301.cc i1302AB.cc i1302.cc i1311AB.cc i1311.cc i1312AB.cc i1312.cc i1313AB.cc i1313.cc i1322AB.cc i1322.cc i1323AB.cc i1323.cc i1333AB.cc i1333.cc i2200AB.cc i2200.cc i2201AB.cc i2201.cc i2211AB.cc i2211.cc i2222AB.cc i2222.cc i2300AB.cc i2300.cc i2301AB.cc i2301.cc i2302AB.cc i2302.cc i2311AB.cc i2311.cc i2312AB.cc i2312.cc i2322AB.cc i2322.cc i2323AB.cc i2323.cc i2333AB.cc i2333.cc i3300AB.cc i3300.cc i3301AB.cc i3301.cc i3302AB.cc i3302.cc i3311AB.cc i3311.cc i3312AB.cc i3312.cc i3322AB.cc i3322.cc i3333AB.cc i3333.cc
|
|---|
| 3 |
|
|---|
| 4 | LIBSCOINT3HEADERS = \
|
|---|
| 5 | build.h LIBS.h
|
|---|
| 6 |
|
|---|
| 7 | lib_LTLIBRARIES +=
|
|---|
| 8 | noinst_LTLIBRARIES += libSCoint3.la
|
|---|
| 9 | libSCoint3_la_includedir = $(includedir)/chemistry/qc/oint3
|
|---|
| 10 | libSCoint3_la_CPPFLAGS = $(AM_CPPFLAGS)
|
|---|
| 11 | libSCoint3_la_LDFLAGS = $(AM_LDFLAGS)
|
|---|
| 12 | libSCoint3_la_LIBADD =
|
|---|
| 13 |
|
|---|
| 14 | nobase_libSCoint3_la_include_HEADERS = ${LIBSCOINT3HEADERS}
|
|---|
| 15 |
|
|---|
| 16 | ## Define the source file list for the "libexample-@MPQC_API_VERSION@.la"
|
|---|
| 17 | ## target. Note that @MPQC_API_VERSION@ is not interpreted by Automake and
|
|---|
| 18 | ## will therefore be treated as if it were literally part of the target name,
|
|---|
| 19 | ## and the variable name derived from that.
|
|---|
| 20 | ## The file extension .cc is recognized by Automake, and makes it produce
|
|---|
| 21 | ## rules which invoke the C++ compiler to produce a libtool object file (.lo)
|
|---|
| 22 | ## from each source file. Note that it is not necessary to list header files
|
|---|
| 23 | ## which are already listed elsewhere in a _HEADERS variable assignment.
|
|---|
| 24 | libSCoint3_la_SOURCES = ${LIBSCOINT3SOURCES}
|
|---|
| 25 |
|
|---|
| 26 | ## Instruct libtool to include ABI version information in the generated shared
|
|---|
| 27 | ## library file (.so). The library ABI version is defined in configure.ac, so
|
|---|
| 28 | ## that all version information is kept in one place.
|
|---|
| 29 | #libSCoint3_la_LDFLAGS += $(AM_LDFLAGS) -version-info $(MPQC_SO_VERSION)
|
|---|
| 30 |
|
|---|
| 31 | ## The generated configuration header is installed in its own subdirectory of
|
|---|
| 32 | ## $(libdir). The reason for this is that the configuration information put
|
|---|
| 33 | ## into this header file describes the target platform the installed library
|
|---|
| 34 | ## has been built for. Thus the file must not be installed into a location
|
|---|
| 35 | ## intended for architecture-independent files, as defined by the Filesystem
|
|---|
| 36 | ## Hierarchy Standard (FHS).
|
|---|
| 37 | ## The nodist_ prefix instructs Automake to not generate rules for including
|
|---|
| 38 | ## the listed files in the distribution on 'make dist'. Files that are listed
|
|---|
| 39 | ## in _HEADERS variables are normally included in the distribution, but the
|
|---|
| 40 | ## configuration header file is generated at configure time and should not be
|
|---|
| 41 | ## shipped with the source tarball.
|
|---|
| 42 | #libSCoint3_libincludedir = $(libdir)/chemistry/qc/oint3/include
|
|---|
| 43 | #nodist_libSCoint3_libinclude_HEADERS = $(top_builddir)/src/lib/scconfig.h
|
|---|
| 44 |
|
|---|