source: src/Potentials/Makefile.am@ 4ecb2d

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests Automaking_mpqc_open 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_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 4ecb2d was bc069f, checked in by Frederik Heber <heber@…>, 8 years ago

Added BindingModel which extends HomologyGraph for an ordered set of FragmentNodes.

  • Property mode set to 100644
File size: 6.5 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4POTENTIALSSOURCE = \
5 Potentials/BindingModel.cpp \
6 Potentials/CompoundPotential.cpp \
7 Potentials/InternalCoordinates/CoordinatorFactory.cpp \
8 Potentials/InternalCoordinates/FourBody_ImproperAngle.cpp \
9 Potentials/InternalCoordinates/FourBody_TorsionAngle.cpp \
10 Potentials/InternalCoordinates/OneBody_Constant.cpp \
11 Potentials/InternalCoordinates/ThreeBody_Angle.cpp \
12 Potentials/InternalCoordinates/TwoBody_Length.cpp \
13 Potentials/PartialNucleiChargeFitter.cpp \
14 Potentials/ParticleTypeCheckers.cpp \
15 Potentials/Particles/Particle.cpp \
16 Potentials/Particles/ParticleFactory.cpp \
17 Potentials/Particles/ParticleRegistry.cpp \
18 Potentials/Particles/StreamFactory_Particle.cpp \
19 Potentials/PotentialFactory.cpp \
20 Potentials/PotentialRegistry.cpp \
21 Potentials/RegistrySerializer_Particle.cpp \
22 Potentials/SerializablePotential.cpp \
23 Potentials/Specifics/ConstantPotential.cpp \
24 Potentials/Specifics/FourBodyPotential_Improper.cpp \
25 Potentials/Specifics/FourBodyPotential_Torsion.cpp \
26 Potentials/Specifics/ManyBodyPotential_Tersoff.cpp \
27 Potentials/Specifics/PairPotential_Harmonic.cpp \
28 Potentials/Specifics/PairPotential_LennardJones.cpp \
29 Potentials/Specifics/PairPotential_Morse.cpp \
30 Potentials/Specifics/PotentialTypes.cpp \
31 Potentials/Specifics/ThreeBodyPotential_Angle.cpp \
32 Potentials/StreamFactory_EmpiricalPotential.cpp \
33 Potentials/TremoloPotentialFileParser.cpp \
34 Potentials/TremoloPotentialTypes.cpp
35
36POTENTIALSHEADER = \
37 Potentials/BindingModel.hpp \
38 Potentials/CompoundPotential.hpp \
39 Potentials/EmpiricalPotential.hpp \
40 Potentials/Exceptions.hpp \
41 Potentials/helpers.hpp \
42 Potentials/InternalCoordinates/Coordinator.hpp \
43 Potentials/InternalCoordinates/CoordinatorFactory.hpp \
44 Potentials/InternalCoordinates/FourBody_ImproperAngle.hpp \
45 Potentials/InternalCoordinates/FourBody_TorsionAngle.hpp \
46 Potentials/InternalCoordinates/OneBody_Constant.hpp \
47 Potentials/InternalCoordinates/ThreeBody_Angle.hpp \
48 Potentials/InternalCoordinates/TwoBody_Length.hpp \
49 Potentials/PartialNucleiChargeFitter.hpp \
50 Potentials/ParticleTypeCheckers.hpp \
51 Potentials/Particles/Particle.hpp \
52 Potentials/Particles/ParticleFactory.hpp \
53 Potentials/Particles/ParticleRegistry.hpp \
54 Potentials/Particles/StreamFactory_Particle.hpp \
55 Potentials/RegistryDeserializer_impl.hpp \
56 Potentials/RegistryDeserializer.hpp \
57 Potentials/PotentialFactory.hpp \
58 Potentials/PotentialRegistry.hpp \
59 Potentials/RegistrySerializer_impl.hpp \
60 Potentials/RegistrySerializer.hpp \
61 Potentials/SerializablePotential.hpp \
62 Potentials/Specifics/PotentialTypes.hpp \
63 Potentials/Specifics/PotentialTypes.def \
64 Potentials/Specifics/PotentialTypes.undef \
65 Potentials/StreamFactory.hpp \
66 Potentials/StreamFactory_EmpiricalPotential.hpp \
67 Potentials/TremoloPotentialFileParser.hpp \
68 Potentials/TremoloPotentialTypes.hpp
69
70if CONDLEVMAR
71POTENTIALSHEADER += \
72 Potentials/PotentialTrainer.hpp
73POTENTIALSSOURCE += \
74 Potentials/PotentialTrainer.cpp
75endif
76
77# add here headers for real potentials (i.e. the PotentialFactory should instantiate)
78SPECIFICPOTENTIALSHEADER = \
79 Potentials/Specifics/ConstantPotential.hpp \
80 Potentials/Specifics/FourBodyPotential_Improper.hpp \
81 Potentials/Specifics/FourBodyPotential_Torsion.hpp \
82 Potentials/Specifics/ManyBodyPotential_Tersoff.hpp \
83 Potentials/Specifics/PairPotential_Harmonic.hpp \
84 Potentials/Specifics/PairPotential_LennardJones.hpp \
85 Potentials/Specifics/PairPotential_Morse.hpp \
86 Potentials/Specifics/ThreeBodyPotential_Angle.hpp
87
88BUILT_SOURCES += AllPotentialHeaders.hpp
89
90noinst_LTLIBRARIES += libMolecuilderPotentials.la
91libMolecuilderPotentials_la_includedir = $(includedir)/MoleCuilder/
92
93nobase_libMolecuilderPotentials_la_include_HEADERS = ${POTENTIALSHEADER} ${SPECIFICPOTENTIALSHEADER}
94nodist_libMolecuilderPotentials_la_include_HEADERS = AllPotentialHeaders.hpp
95
96## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
97## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
98## will therefore be treated as if it were literally part of the target name,
99## and the variable name derived from that.
100## The file extension .cc is recognized by Automake, and makes it produce
101## rules which invoke the C++ compiler to produce a libtool object file (.lo)
102## from each source file. Note that it is not necessary to list header files
103## which are already listed elsewhere in a _HEADERS variable assignment.
104libMolecuilderPotentials_la_SOURCES = ${POTENTIALSSOURCE}
105
106## Instruct libtool to include ABI version information in the generated shared
107## library file (.so). The library ABI version is defined in configure.ac, so
108## that all version information is kept in one place.
109#libMolecuilderPotentials_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
110
111## The generated configuration header is installed in its own subdirectory of
112## $(libdir). The reason for this is that the configuration information put
113## into this header file describes the target platform the installed library
114## has been built for. Thus the file must not be installed into a location
115## intended for architecture-independent files, as defined by the Filesystem
116## Hierarchy Standard (FHS).
117## The nodist_ prefix instructs Automake to not generate rules for including
118## the listed files in the distribution on 'make dist'. Files that are listed
119## in _HEADERS variables are normally included in the distribution, but the
120## configuration header file is generated at configure time and should not be
121## shipped with the source tarball.
122#libMolecuilderPotentials_libincludedir = $(libdir)/MoleCuilder/include
123#nodist_libMolecuilderPotentials_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
124
125## Install the generated pkg-config file (.pc) into the expected location for
126## architecture-dependent package configuration information. Occasionally,
127## pkg-config files are also used for architecture-independent data packages,
128## in which case the correct install location would be $(datadir)/pkgconfig.
129#pkgconfigdir = $(libdir)/pkgconfig
130#pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
131
132AllPotentialHeaders.hpp: $(SPECIFICPOTENTIALSHEADER)
133 echo "#ifndef ALLPOTENTIALHEADERS_HPP_" >$@; \
134 echo "#define ALLPOTENTIALHEADERS_HPP_" >>$@; \
135 for file in $(SPECIFICPOTENTIALSHEADER); do \
136 echo "#include \"$$file\"" >>$@; \
137 done; \
138 echo "#endif /* ALLPOTENTIALHEADERS_HPP_ */" >>$@;
139
140MOSTLYCLEANFILES += \
141 AllPotentialHeaders.hpp
142
Note: See TracBrowser for help on using the repository browser.