source: ThirdParty/mpqc_open/src/lib/chemistry/qc/basis/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: 4.3 KB
Line 
1LIBSCBASISSOURCES = \
2 chemistry/qc/basis/aotoso.cc \
3 chemistry/qc/basis/cartiter.cc \
4 chemistry/qc/basis/dercent.cc \
5 chemistry/qc/basis/distshpair.cc \
6 chemistry/qc/basis/extent.cc \
7 chemistry/qc/basis/files.cc \
8 chemistry/qc/basis/gaussbas.cc \
9 chemistry/qc/basis/gaussbaval.cc \
10 chemistry/qc/basis/gaussshell.cc \
11 chemistry/qc/basis/gaussshval.cc \
12 chemistry/qc/basis/gpetite.cc \
13 chemistry/qc/basis/integral.cc \
14 chemistry/qc/basis/obint.cc \
15 chemistry/qc/basis/orthog.cc \
16 chemistry/qc/basis/petite.cc \
17 chemistry/qc/basis/shellrot.cc \
18 chemistry/qc/basis/sobasis.cc \
19 chemistry/qc/basis/sointegral.cc \
20 chemistry/qc/basis/symmint.cc \
21 chemistry/qc/basis/tbint.cc \
22 chemistry/qc/basis/transform.cc
23
24LIBSCBASISBUILTHEADERS = \
25 chemistry/qc/basis/f77sym.h
26
27LIBSCBASISHEADERS = \
28 chemistry/qc/basis/basis.h \
29 chemistry/qc/basis/cartiter.h \
30 chemistry/qc/basis/dercent.h \
31 chemistry/qc/basis/distshpair.h \
32 chemistry/qc/basis/extent.h \
33 chemistry/qc/basis/files.h \
34 chemistry/qc/basis/gaussbas.h \
35 chemistry/qc/basis/gaussshell.h \
36 chemistry/qc/basis/gpetite.h \
37 chemistry/qc/basis/integral.h \
38 chemistry/qc/basis/obint.h \
39 chemistry/qc/basis/orthog.h \
40 chemistry/qc/basis/petite.h \
41 chemistry/qc/basis/shellrot.h \
42 chemistry/qc/basis/sobasis.h \
43 chemistry/qc/basis/sointegral.h \
44 chemistry/qc/basis/symmint.h \
45 chemistry/qc/basis/tbint.h \
46 chemistry/qc/basis/transform.h
47
48BUILT_SOURCES += $(LIBSCBASISBUILTHEADERS)
49
50chemistry/qc/basis/f77sym.h: chemistry/qc/basis/f77sym.in
51 $(MKF77SYM) $< $@
52
53lib_LTLIBRARIES +=
54noinst_LTLIBRARIES += libSCbasis.la
55libSCbasis_la_includedir = $(includedir)/chemistry/qc/basis
56libSCbasis_la_CPPFLAGS = $(AM_CPPFLAGS)
57libSCbasis_la_LDFLAGS = $(AM_LDFLAGS)
58libSCbasis_la_LIBADD = $(FLIBS)
59
60nobase_libSCbasis_la_include_HEADERS = ${LIBSCBASISHEADERS}
61
62EXTRA_DIST += chemistry/qc/basis/f77sym.in
63
64## Define the source file list for the "libexample-@MPQC_API_VERSION@.la"
65## target. Note that @MPQC_API_VERSION@ is not interpreted by Automake and
66## will therefore be treated as if it were literally part of the target name,
67## and the variable name derived from that.
68## The file extension .cc is recognized by Automake, and makes it produce
69## rules which invoke the C++ compiler to produce a libtool object file (.lo)
70## from each source file. Note that it is not necessary to list header files
71## which are already listed elsewhere in a _HEADERS variable assignment.
72libSCbasis_la_SOURCES = ${LIBSCBASISSOURCES}
73
74## Instruct libtool to include ABI version information in the generated shared
75## library file (.so). The library ABI version is defined in configure.ac, so
76## that all version information is kept in one place.
77#libSCbasis_la_LDFLAGS += $(AM_LDFLAGS) -version-info $(MPQC_SO_VERSION)
78
79## The generated configuration header is installed in its own subdirectory of
80## $(libdir). The reason for this is that the configuration information put
81## into this header file describes the target platform the installed library
82## has been built for. Thus the file must not be installed into a location
83## intended for architecture-independent files, as defined by the Filesystem
84## Hierarchy Standard (FHS).
85## The nodist_ prefix instructs Automake to not generate rules for including
86## the listed files in the distribution on 'make dist'. Files that are listed
87## in _HEADERS variables are normally included in the distribution, but the
88## configuration header file is generated at configure time and should not be
89## shipped with the source tarball.
90#libSCbasis_libincludedir = $(libdir)/chemistry/qc/basis/include
91#nodist_libSCbasis_libinclude_HEADERS = $(top_builddir)/src/lib/scconfig.h
92
93
94BASISTESTS = \
95 btest
96
97# ? btest crashes with mpi (also in original implementation)
98
99TESTS += $(BASISTESTS)
100check_PROGRAMS += $(BASISTESTS)
101noinst_PROGRAMS += $(BASISTESTS)
102
103BASISLIBS = \
104 libSCintv3.la libSCoint3.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
105
106btest_SOURCES = \
107 chemistry/qc/basis/btest.cc
108btest_CPPFLAGS = $(AM_CPPFLAGS) -DSRCDIR=\"$(srcdir)/chemistry/qc/basis\"
109btest_LDADD = \
110 $(BASISLIBS)
111
112EXTRA_DIST += ./chemistry/qc/basis/f77sym.in
113
114DISTCLEANFILES += \
115 chemistry/qc/basis/f77sym.h
Note: See TracBrowser for help on using the repository browser.