source: ThirdParty/mpqc_open/src/lib/chemistry/qc/scf/Makefile.am@ b7e5b0

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_levmar Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since b7e5b0 was b7e5b0, checked in by Frederik Heber <heber@…>, 8 years ago

Added files created by tests to DISTCLEANFILES.

  • Property mode set to 100644
File size: 3.9 KB
Line 
1LIBSCSCFSOURCES = \
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
21LIBSCSCFHEADERS = \
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
49lib_LTLIBRARIES +=
50noinst_LTLIBRARIES += libSCscf.la
51libSCscf_la_includedir = $(includedir)/chemistry/qc/scf
52libSCscf_la_CPPFLAGS = $(AM_CPPFLAGS)
53libSCscf_la_LDFLAGS = $(AM_LDFLAGS)
54libSCscf_la_LIBADD =
55
56nobase_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.
66libSCscf_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
88SCFTESTS = \
89 scftest
90
91TESTS += $(SCFTESTS)
92check_PROGRAMS += $(SCFTESTS)
93noinst_PROGRAMS += $(SCFTESTS)
94
95SCFLIBS = \
96 libSCdft.la libSCscf.la libSCwfn.la libSCsolvent.la libSCintv3.la libSCbasis.la libSCoint3.la libSCmolecule.la libSCisosurf.la libSCoptimize.la libSCsymmetry.la libSCscmat.la libSCrender.la libSCgroup.la libSCmisc.la libSCstate.la libSCkeyval.la libSCclass.la libSCcontainer.la libSCref.la
97
98scftest_SOURCES = \
99 chemistry/qc/scf/scftest.cc
100scftest_CPPFLAGS = $(AM_CPPFLAGS) -DSRCDIR=\"$(srcdir)/chemistry/qc/scf\"
101scftest_LDADD = \
102 $(SCFLIBS)
103
104
105EXTRA_DIST += ./chemistry/qc/scf/mpqc.in
106
107DISTCLEANFILES += \
108 scftest.wfn
Note: See TracBrowser for help on using the repository browser.