source: ThirdParty/mpqc_open/src/lib/chemistry/qc/dft/Makefile.am@ d9632e

ForceAnnealing_with_BondGraph_continued_betteresults
Last change on this file since d9632e was 47b463, checked in by Frederik Heber <heber@…>, 8 years ago

Added all crashing tests to XFAIL.

  • note that they also crash in the original distribution.
  • consolidated into NONFUNCTIONING_TESTS and XFAIL_TESTS.
  • Property mode set to 100644
File size: 3.3 KB
RevLine 
[00f983]1LIBSCDFTSOURCES = \
[23612c]2 chemistry/qc/dft/clks.cc \
3 chemistry/qc/dft/functional.cc \
4 chemistry/qc/dft/hsosks.cc \
5 chemistry/qc/dft/integrator.cc \
[251420]6 chemistry/qc/dft/lebedev.c \
[23612c]7 chemistry/qc/dft/tmplinst.cc \
8 chemistry/qc/dft/uks.cc
9
[00f983]10
11LIBSCDFTHEADERS = \
[23612c]12 chemistry/qc/dft/clks.h \
13 chemistry/qc/dft/clkstmpl.h \
14 chemistry/qc/dft/functional.h \
15 chemistry/qc/dft/hsosks.h \
16 chemistry/qc/dft/hsoskstmpl.h \
17 chemistry/qc/dft/integrator.h \
18 chemistry/qc/dft/linkage.h \
19 chemistry/qc/dft/uks.h \
20 chemistry/qc/dft/ukstmpl.h
21
[00f983]22
23lib_LTLIBRARIES +=
24noinst_LTLIBRARIES += libSCdft.la
25libSCdft_la_includedir = $(includedir)/chemistry/qc/dft
26libSCdft_la_CPPFLAGS = $(AM_CPPFLAGS)
27libSCdft_la_LDFLAGS = $(AM_LDFLAGS)
28libSCdft_la_LIBADD =
29
30nobase_libSCdft_la_include_HEADERS = ${LIBSCDFTHEADERS}
31
32## Define the source file list for the "libexample-@MPQC_API_VERSION@.la"
33## target. Note that @MPQC_API_VERSION@ is not interpreted by Automake and
34## will therefore be treated as if it were literally part of the target name,
35## and the variable name derived from that.
36## The file extension .cc is recognized by Automake, and makes it produce
37## rules which invoke the C++ compiler to produce a libtool object file (.lo)
38## from each source file. Note that it is not necessary to list header files
39## which are already listed elsewhere in a _HEADERS variable assignment.
40libSCdft_la_SOURCES = ${LIBSCDFTSOURCES}
41
42## Instruct libtool to include ABI version information in the generated shared
43## library file (.so). The library ABI version is defined in configure.ac, so
44## that all version information is kept in one place.
45#libSCdft_la_LDFLAGS += $(AM_LDFLAGS) -version-info $(MPQC_SO_VERSION)
46
47## The generated configuration header is installed in its own subdirectory of
48## $(libdir). The reason for this is that the configuration information put
49## into this header file describes the target platform the installed library
50## has been built for. Thus the file must not be installed into a location
51## intended for architecture-independent files, as defined by the Filesystem
52## Hierarchy Standard (FHS).
53## The nodist_ prefix instructs Automake to not generate rules for including
54## the listed files in the distribution on 'make dist'. Files that are listed
55## in _HEADERS variables are normally included in the distribution, but the
56## configuration header file is generated at configure time and should not be
57## shipped with the source tarball.
58#libSCdft_libincludedir = $(libdir)/chemistry/qc/dft/include
59#nodist_libSCdft_libinclude_HEADERS = $(top_builddir)/src/lib/scconfig.h
60
[23612c]61
[00f983]62DFTTESTS = \
63 dfttest \
64 lebedev
65
[47b463]66# ?dfttest crashes with mpi (also in original implementation)
67
[1513599]68TESTS += $(DFTTESTS)
[00f983]69check_PROGRAMS += $(DFTTESTS)
70noinst_PROGRAMS += $(DFTTESTS)
71
72DFTLIBS = \
[251420]73 libSCdft.la libSCscf.la libSCwfn.la libSCsolvent.la libSCintv3.la libSCbasis.la libSCoint3.la libSCmolecule.la libSCisosurf.la libSCoptimize.la libSCsymmetry.la libSCscmat.la libSCgroup.la libSCrender.la libSCmisc.la libSCstate.la libSCkeyval.la libSCclass.la libSCcontainer.la libSCref.la
[00f983]74
[23612c]75dfttest_SOURCES = \
76 chemistry/qc/dft/dfttest.cc
[72461c]77dfttest_CPPFLAGS = $(AM_CPPFLAGS) -DSRCDIR=\"$(srcdir)/chemistry/qc/dft\"
[00f983]78dfttest_LDADD = \
79 $(DFTLIBS)
80
[23612c]81lebedev_SOURCES = \
[251420]82 chemistry/qc/dft/lebedev.c
83lebedev_CPPFLAGS = \
84 $(AM_CPPFLAGS) -DDEFINE_MAIN
[00f983]85lebedev_LDADD = \
[251420]86 $(DFTLIBS) \
87 -lm
[00f983]88
[72461c]89EXTRA_DIST += ./chemistry/qc/dft/dfttest.in
Note: See TracBrowser for help on using the repository browser.