source: ThirdParty/mpqc_open/src/lib/chemistry/qc/cints/Makefile.am@ bbc982

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 bbc982 was bbc982, checked in by Frederik Heber <heber@…>, 8 years ago

Various fixes to mpqc_open's configure.ac.

  • using AC_CANONICAL_SYSTEM to set host and target.
  • adding missing DEFINES to config header.
  • adding more conditionals for mpi, armci, ...
  • consolidating rename of several conditionals as COND_...
  • src/lib/Makefile.am: conditionals are now generally prefixed with COND_.
  • Property mode set to 100644
File size: 4.1 KB
Line 
1LIBSCCINTSSOURCES = \
2 chemistry/qc/cints/cints.cc \
3 chemistry/qc/cints/comp_eri.cc \
4 chemistry/qc/cints/comp_grt.cc \
5 chemistry/qc/cints/edipole.cc \
6 chemistry/qc/cints/equadrupole.cc \
7 chemistry/qc/cints/eri.cc \
8 chemistry/qc/cints/fjt.cc \
9 chemistry/qc/cints/grt.cc \
10 chemistry/qc/cints/hcore.cc \
11 chemistry/qc/cints/int1e.cc \
12 chemistry/qc/cints/int2e.cc \
13 chemistry/qc/cints/kinetic.cc \
14 chemistry/qc/cints/nuclear.cc \
15 chemistry/qc/cints/obintcints.cc \
16 chemistry/qc/cints/obosrr.cc \
17 chemistry/qc/cints/overlap.cc \
18 chemistry/qc/cints/permute2e.cc \
19 chemistry/qc/cints/primpairs.cc \
20 chemistry/qc/cints/shellpairs.cc \
21 chemistry/qc/cints/storage.cc \
22 chemistry/qc/cints/tbintcints.cc \
23 chemistry/qc/cints/tform.cc
24
25
26LIBSCCINTSHEADERS = \
27 chemistry/qc/cints/cartit.h \
28 chemistry/qc/cints/cints.h \
29 chemistry/qc/cints/eri.h \
30 chemistry/qc/cints/eri_quartet_data.h \
31 chemistry/qc/cints/fjt.h \
32 chemistry/qc/cints/grt.h \
33 chemistry/qc/cints/grt_quartet_data.h \
34 chemistry/qc/cints/int1e.h \
35 chemistry/qc/cints/int2e.h \
36 chemistry/qc/cints/linkage.h \
37 chemistry/qc/cints/macros.h \
38 chemistry/qc/cints/obintcints.h \
39 chemistry/qc/cints/primpairs.h \
40 chemistry/qc/cints/shellpairs.h \
41 chemistry/qc/cints/static.h \
42 chemistry/qc/cints/storage.h \
43 chemistry/qc/cints/tbintcints.h \
44 chemistry/qc/cints/tform.h
45
46
47lib_LTLIBRARIES +=
48noinst_LTLIBRARIES += libSCcints.la
49libSCcints_la_includedir = $(includedir)/chemistry/qc/cints
50libSCcints_la_CPPFLAGS = $(AM_CPPFLAGS)
51libSCcints_la_LDFLAGS = $(AM_LDFLAGS)
52libSCcints_la_LIBADD =
53
54nobase_libSCcints_la_include_HEADERS = ${LIBSCCINTSHEADERS}
55
56## Define the source file list for the "libexample-@MPQC_API_VERSION@.la"
57## target. Note that @MPQC_API_VERSION@ is not interpreted by Automake and
58## will therefore be treated as if it were literally part of the target name,
59## and the variable name derived from that.
60## The file extension .cc is recognized by Automake, and makes it produce
61## rules which invoke the C++ compiler to produce a libtool object file (.lo)
62## from each source file. Note that it is not necessary to list header files
63## which are already listed elsewhere in a _HEADERS variable assignment.
64libSCcints_la_SOURCES = ${LIBSCCINTSSOURCES}
65
66## Instruct libtool to include ABI version information in the generated shared
67## library file (.so). The library ABI version is defined in configure.ac, so
68## that all version information is kept in one place.
69#libSCcints_la_LDFLAGS += $(AM_LDFLAGS) -version-info $(MPQC_SO_VERSION)
70
71## The generated configuration header is installed in its own subdirectory of
72## $(libdir). The reason for this is that the configuration information put
73## into this header file describes the target platform the installed library
74## has been built for. Thus the file must not be installed into a location
75## intended for architecture-independent files, as defined by the Filesystem
76## Hierarchy Standard (FHS).
77## The nodist_ prefix instructs Automake to not generate rules for including
78## the listed files in the distribution on 'make dist'. Files that are listed
79## in _HEADERS variables are normally included in the distribution, but the
80## configuration header file is generated at configure time and should not be
81## shipped with the source tarball.
82#libSCcints_libincludedir = $(libdir)/chemistry/qc/cints/include
83#nodist_libSCcints_libinclude_HEADERS = $(top_builddir)/src/lib/scconfig.h
84
85
86CINTSTESTS = \
87 cintstest
88
89TESTS += $(CINTSTESTS)
90check_PROGRAMS += $(CINTSTESTS)
91noinst_PROGRAMS += $(CINTSTESTS)
92
93CINTSLIBS = \
94 libSCcints.la libSCintv3.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 libSCoint3.la
95
96cintstest_SOURCES = \
97 chemistry/qc/cints/cintstest.cc
98cintstest_CPPFLAGS = $(AM_CPPFLAGS) -DSRCDIR=\"$(srcdir)/chemistry/qc/cints\"
99cintstest_LDADD = \
100 $(CINTSLIBS)
101
102if COND_LIBINT
103cintstest_LDADD += -lint
104endif
105if COND_LIBR12
106cintstest_LDADD += -lr12
107endif
108if COND_LIBDERIV
109cintstest_LDADD += -lderiv
110endif
111
112EXTRA_DIST += ./chemistry/qc/cints/cintstest.in
Note: See TracBrowser for help on using the repository browser.