source: src/Actions/Makefile.am@ cd7a87

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since cd7a87 was be945c, checked in by Frederik Heber <heber@…>, 14 years ago

New DipoleAngularCorrelationAction that calculates angular correlation between dipoles.

  • Property mode set to 100644
File size: 11.0 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4INCLUDES = -I$(top_srcdir)/src
5
6AM_LDFLAGS = -ldl
7AM_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}
8
9ACTIONSSOURCE = \
10 ${ANALYSISACTIONSOURCE} \
11 ${ATOMACTIONSOURCE} \
12 ${CMDACTIONSOURCE} \
13 ${FRAGMENTATIONACTIONSOURCE} \
14 ${MOLECULEACTIONSOURCE} \
15 ${PARSERACTIONSOURCE} \
16 ${SELECTIONATOMACTIONSOURCE} \
17 ${SELECTIONMOLECULEACTIONSOURCE} \
18 ${TESSELATIONACTIONSOURCE} \
19 ${WORLDACTIONSOURCE} \
20 RedoAction.cpp \
21 UndoAction.cpp \
22 ValueStorage.cpp
23
24ACTIONSHEADER = \
25 ${ANALYSISACTIONHEADER} \
26 ${ATOMACTIONHEADER} \
27 ${CMDACTIONHEADER} \
28 ${FRAGMENTATIONACTIONHEADER} \
29 ${MOLECULEACTIONHEADER} \
30 ${PARSERACTIONHEADER} \
31 ${SELECTIONATOMACTIONHEADER} \
32 ${SELECTIONMOLECULEACTIONHEADER} \
33 ${TESSELATIONACTIONHEADER} \
34 ${WORLDACTIONHEADER} \
35 ValueStorage.hpp \
36 Values.hpp
37
38ANALYSISACTIONSOURCE = \
39 AnalysisAction/DipoleAngularCorrelationAction.cpp \
40 AnalysisAction/MolecularVolumeAction.cpp \
41 AnalysisAction/PairCorrelationAction.cpp \
42 AnalysisAction/PointCorrelationAction.cpp \
43 AnalysisAction/PrincipalAxisSystemAction.cpp \
44 AnalysisAction/SurfaceCorrelationAction.cpp
45ANALYSISACTIONHEADER = \
46 AnalysisAction/DipoleAngularCorrelationAction.hpp \
47 AnalysisAction/MolecularVolumeAction.hpp \
48 AnalysisAction/PairCorrelationAction.hpp \
49 AnalysisAction/PointCorrelationAction.hpp \
50 AnalysisAction/PrincipalAxisSystemAction.hpp \
51 AnalysisAction/SurfaceCorrelationAction.hpp
52
53ATOMACTIONSOURCE = \
54 AtomAction/AddAction.cpp \
55 AtomAction/ChangeElementAction.cpp \
56 AtomAction/RemoveAction.cpp \
57 AtomAction/RotateAroundOriginByAngleAction.cpp \
58 AtomAction/TranslateAction.cpp
59ATOMACTIONHEADER = \
60 AtomAction/AddAction.hpp \
61 AtomAction/ChangeElementAction.hpp \
62 AtomAction/RemoveAction.cpp \
63 AtomAction/RotateAroundOriginByAngleAction.hpp \
64 AtomAction/TranslateAction.hpp
65
66CMDACTIONSOURCE = \
67 CommandAction/BondLengthTableAction.cpp \
68 CommandAction/ElementDbAction.cpp \
69 CommandAction/FastParsingAction.cpp \
70 CommandAction/HelpAction.cpp \
71 CommandAction/VerboseAction.cpp \
72 CommandAction/VersionAction.cpp \
73 CommandAction/WarrantyAction.cpp
74CMDACTIONHEADER = \
75 CommandAction/BondLengthTableAction.hpp \
76 CommandAction/ElementDbAction.hpp \
77 CommandAction/FastParsingAction.hpp \
78 CommandAction/HelpAction.hpp \
79 CommandAction/VerboseAction.hpp \
80 CommandAction/VersionAction.hpp \
81 CommandAction/WarrantyAction.hpp
82
83FRAGMENTATIONACTIONSOURCE = \
84 FragmentationAction/ConstructBondGraphAction.cpp \
85 FragmentationAction/DepthFirstSearchAction.cpp \
86 FragmentationAction/FragmentationAction.cpp \
87 FragmentationAction/SubgraphDissectionAction.cpp
88FRAGMENTATIONACTIONHEADER = \
89 FragmentationAction/ConstructBondGraphAction.hpp \
90 FragmentationAction/DepthFirstSearchAction.hpp \
91 FragmentationAction/FragmentationAction.hpp \
92 FragmentationAction/SubgraphDissectionAction.hpp
93
94MOLECULEACTIONSOURCE = \
95 MoleculeAction/BondFileAction.cpp \
96 MoleculeAction/ChangeNameAction.cpp \
97 MoleculeAction/CopyAction.cpp \
98 MoleculeAction/FillWithMoleculeAction.cpp \
99 MoleculeAction/FillVoidWithMoleculeAction.cpp \
100 MoleculeAction/LinearInterpolationofTrajectoriesAction.cpp \
101 MoleculeAction/LoadAction.cpp \
102 MoleculeAction/RotateAroundSelfByAngleAction.cpp \
103 MoleculeAction/RotateToPrincipalAxisSystemAction.cpp \
104 MoleculeAction/SaveAction.cpp \
105 MoleculeAction/SaveAdjacencyAction.cpp \
106 MoleculeAction/SaveBondsAction.cpp \
107 MoleculeAction/SaveTemperatureAction.cpp \
108 MoleculeAction/SuspendInWaterAction.cpp \
109 MoleculeAction/VerletIntegrationAction.cpp
110MOLECULEACTIONHEADER = \
111 MoleculeAction/BondFileAction.hpp \
112 MoleculeAction/ChangeNameAction.hpp \
113 MoleculeAction/CopyAction.hpp \
114 MoleculeAction/FillWithMoleculeAction.hpp \
115 MoleculeAction/FillVoidWithMoleculeAction.hpp \
116 MoleculeAction/LinearInterpolationofTrajectoriesAction.hpp \
117 MoleculeAction/LoadAction.cpp \
118 MoleculeAction/RotateAroundSelfByAngleAction.hpp \
119 MoleculeAction/RotateToPrincipalAxisSystemAction.hpp \
120 MoleculeAction/SaveAction.hpp \
121 MoleculeAction/SaveAdjacencyAction.hpp \
122 MoleculeAction/SaveBondsAction.hpp \
123 MoleculeAction/SaveTemperatureAction.hpp \
124 MoleculeAction/SuspendInWaterAction.hpp \
125 MoleculeAction/VerletIntegrationAction.hpp
126
127SELECTIONATOMACTIONSOURCE = \
128 SelectionAction/Atoms/AllAtomsAction.cpp \
129 SelectionAction/Atoms/AllAtomsInsideCuboidAction.cpp \
130 SelectionAction/Atoms/AllAtomsInsideSphereAction.cpp \
131 SelectionAction/Atoms/AllAtomsOfMoleculeAction.cpp \
132 SelectionAction/Atoms/AtomByElementAction.cpp \
133 SelectionAction/Atoms/AtomByIdAction.cpp \
134 SelectionAction/Atoms/ClearAllAtomsAction.cpp \
135 SelectionAction/Atoms/NotAllAtomsAction.cpp \
136 SelectionAction/Atoms/NotAllAtomsInsideCuboidAction.cpp \
137 SelectionAction/Atoms/NotAllAtomsInsideSphereAction.cpp \
138 SelectionAction/Atoms/NotAllAtomsOfMoleculeAction.cpp \
139 SelectionAction/Atoms/NotAtomByElementAction.cpp \
140 SelectionAction/Atoms/NotAtomByIdAction.cpp
141SELECTIONATOMACTIONHEADER = \
142 SelectionAction/Atoms/AllAtomsAction.hpp \
143 SelectionAction/Atoms/AllAtomsInsideCuboidAction.hpp \
144 SelectionAction/Atoms/AllAtomsInsideSphereAction.hpp \
145 SelectionAction/Atoms/AllAtomsOfMoleculeAction.hpp \
146 SelectionAction/Atoms/AtomByElementAction.hpp \
147 SelectionAction/Atoms/AtomByIdAction.hpp \
148 SelectionAction/Atoms/ClearAllAtomsAction.hpp \
149 SelectionAction/Atoms/NotAllAtomsAction.hpp \
150 SelectionAction/Atoms/NotAllAtomsInsideCuboidAction.hpp \
151 SelectionAction/Atoms/NotAllAtomsInsideSphereAction.hpp \
152 SelectionAction/Atoms/NotAllAtomsOfMoleculeAction.hpp \
153 SelectionAction/Atoms/NotAtomByElementAction.hpp \
154 SelectionAction/Atoms/NotAtomByIdAction.hpp
155
156SELECTIONMOLECULEACTIONSOURCE = \
157 SelectionAction/Molecules/AllMoleculesAction.cpp \
158 SelectionAction/Molecules/ClearAllMoleculesAction.cpp \
159 SelectionAction/Molecules/MoleculeByFormulaAction.cpp \
160 SelectionAction/Molecules/MoleculeByIdAction.cpp \
161 SelectionAction/Molecules/MoleculeByNameAction.cpp \
162 SelectionAction/Molecules/MoleculeByOrderAction.cpp \
163 SelectionAction/Molecules/MoleculeOfAtomAction.cpp \
164 SelectionAction/Molecules/NotAllMoleculesAction.cpp \
165 SelectionAction/Molecules/NotMoleculeByFormulaAction.cpp \
166 SelectionAction/Molecules/NotMoleculeByIdAction.cpp \
167 SelectionAction/Molecules/NotMoleculeByNameAction.cpp \
168 SelectionAction/Molecules/NotMoleculeByOrderAction.cpp \
169 SelectionAction/Molecules/NotMoleculeOfAtomAction.cpp
170SELECTIONMOLECULEACTIONHEADER = \
171 SelectionAction/Molecules/AllMoleculesAction.hpp \
172 SelectionAction/Molecules/ClearAllMoleculesAction.hpp \
173 SelectionAction/Molecules/MoleculeByFormulaAction.hpp \
174 SelectionAction/Molecules/MoleculeByIdAction.hpp \
175 SelectionAction/Molecules/MoleculeByNameAction.hpp \
176 SelectionAction/Molecules/MoleculeByOrderAction.hpp \
177 SelectionAction/Molecules/MoleculeOfAtomAction.hpp \
178 SelectionAction/Molecules/NotAllMoleculesAction.hpp \
179 SelectionAction/Molecules/NotMoleculeByFormulaAction.hpp \
180 SelectionAction/Molecules/NotMoleculeByIdAction.hpp \
181 SelectionAction/Molecules/NotMoleculeByNameAction.hpp \
182 SelectionAction/Molecules/NotMoleculeByOrderAction.hpp \
183 SelectionAction/Molecules/NotMoleculeOfAtomAction.hpp
184
185TESSELATIONACTIONSOURCE = \
186 TesselationAction/ConvexEnvelopeAction.cpp \
187 TesselationAction/NonConvexEnvelopeAction.cpp
188TESSELATIONACTIONHEADER = \
189 TesselationAction/ConvexEnvelopeAction.hpp \
190 TesselationAction/NonConvexEnvelopeAction.hpp
191
192WORLDACTIONSOURCE = \
193 WorldAction/AddEmptyBoundaryAction.cpp \
194 WorldAction/BoundInBoxAction.cpp \
195 WorldAction/CenterInBoxAction.cpp \
196 WorldAction/CenterOnEdgeAction.cpp \
197 WorldAction/ChangeBoxAction.cpp \
198 WorldAction/InputAction.cpp \
199 WorldAction/OutputAction.cpp \
200 WorldAction/RepeatBoxAction.cpp \
201 WorldAction/ScaleBoxAction.cpp \
202 WorldAction/SetDefaultNameAction.cpp \
203 WorldAction/SetGaussianBasisAction.cpp \
204 WorldAction/SetOutputFormatsAction.cpp
205WORLDACTIONHEADER = \
206 WorldAction/AddEmptyBoundaryAction.hpp \
207 WorldAction/BoundInBoxAction.hpp \
208 WorldAction/CenterInBoxAction.hpp \
209 WorldAction/CenterOnEdgeAction.hpp \
210 WorldAction/ChangeBoxAction.hpp \
211 WorldAction/InputAction.hpp \
212 WorldAction/OutputAction.hpp \
213 WorldAction/RepeatBoxAction.hpp \
214 WorldAction/ScaleBoxAction.hpp \
215 WorldAction/SetDefaultNameAction.hpp \
216 WorldAction/SetGaussianBasisAction.hpp \
217 WorldAction/SetOutputFormatsAction.hpp
218
219
220lib_LTLIBRARIES = libMolecuilderActions.la
221libMolecuilderActions_la_includedir = $(includedir)/MoleCuilder/Actions/
222libMolecuilderActions_la_LIBADD = \
223 ../Parser/libMolecuilderParser.la \
224 ../Shapes/libMolecuilderShapes.la \
225 ${CodePatterns_LIBS}
226# ../UIElements/libMolecuilderUI.la
227nobase_libMolecuilderActions_la_include_HEADERS = ${ACTIONSHEADER}
228
229## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
230## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
231## will therefore be treated as if it were literally part of the target name,
232## and the variable name derived from that.
233## The file extension .cc is recognized by Automake, and makes it produce
234## rules which invoke the C++ compiler to produce a libtool object file (.lo)
235## from each source file. Note that it is not necessary to list header files
236## which are already listed elsewhere in a _HEADERS variable assignment.
237libMolecuilderActions_la_SOURCES = ${ACTIONSSOURCE}
238
239## Instruct libtool to include ABI version information in the generated shared
240## library file (.so). The library ABI version is defined in configure.ac, so
241## that all version information is kept in one place.
242libMolecuilderActions_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
243
244## The generated configuration header is installed in its own subdirectory of
245## $(libdir). The reason for this is that the configuration information put
246## into this header file describes the target platform the installed library
247## has been built for. Thus the file must not be installed into a location
248## intended for architecture-independent files, as defined by the Filesystem
249## Hierarchy Standard (FHS).
250## The nodist_ prefix instructs Automake to not generate rules for including
251## the listed files in the distribution on 'make dist'. Files that are listed
252## in _HEADERS variables are normally included in the distribution, but the
253## configuration header file is generated at configure time and should not be
254## shipped with the source tarball.
255#libMolecuilderActions_libincludedir = $(libdir)/MoleCuilder/include
256#nodist_libMolecuilderActions_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
257
258## Install the generated pkg-config file (.pc) into the expected location for
259## architecture-dependent package configuration information. Occasionally,
260## pkg-config files are also used for architecture-independent data packages,
261## in which case the correct install location would be $(datadir)/pkgconfig.
262#pkgconfigdir = $(libdir)/pkgconfig
263#pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
264
265unity.cpp:
266 echo "" > unity.cpp; \
267 list='$(ACTIONSSOURCE)'; for file in $$list; do \
268 echo "#include \"$(srcdir)/$$file\"" >> unity.cpp; \
269 done;
270
271MOSTLYCLEANFILES = unity.cpp
Note: See TracBrowser for help on using the repository browser.