source: src/Actions/Makefile.am@ 9c1324

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

Equipped MakroAction with some boost::preprocessor magic, ActionSequence with loop.

  • ActionSequence now has a loop integer specifying how often the sequence is repeated. This is required to have actions in a loop but each of them generate their dialog only once.
  • Property mode set to 100644
File size: 27.5 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4ACTIONSSOURCE = \
5 Actions/Action.cpp \
6 Actions/ActionHistory.cpp \
7 Actions/ActionRegistry.cpp \
8 Actions/ActionSequence.cpp \
9 Actions/ActionTrait.cpp \
10 Actions/ErrorAction.cpp \
11 Actions/MakroAction.cpp \
12 Actions/ManipulateAtomsProcess.cpp \
13 Actions/MethodAction.cpp \
14 Actions/OptionRegistry.cpp \
15 Actions/OptionTrait.cpp \
16 Actions/Process.cpp \
17 Actions/UndoRedoHelpers.cpp \
18 Actions/Values.cpp
19
20ACTIONSHEADER = \
21 Actions/Action.hpp \
22 Actions/ActionExceptions.hpp \
23 Actions/Action_impl_header.hpp \
24 Actions/Action_impl_pre.hpp \
25 Actions/Action_impl_undef.hpp \
26 Actions/ActionHistory.hpp \
27 Actions/ActionRegistry.hpp \
28 Actions/ActionSequence.hpp \
29 Actions/ActionTrait.hpp \
30 Actions/ActionTraits.hpp \
31 Actions/AtomsCalculation.hpp \
32 Actions/AtomsCalculation_impl.hpp \
33 Actions/Calculation.hpp \
34 Actions/Calculation_impl.hpp \
35 Actions/ErrorAction.hpp \
36 Actions/GlobalListOfActions.hpp \
37 Actions/MakroAction.hpp \
38 Actions/MakroAction_impl_header.hpp \
39 Actions/MakroAction_impl_pre.hpp \
40 Actions/ManipulateAtomsProcess.hpp \
41 Actions/MethodAction.hpp \
42 Actions/OptionRegistry.hpp \
43 Actions/OptionTrait.hpp \
44 Actions/Process.hpp \
45 Actions/Reaction.hpp \
46 Actions/Reaction_impl.hpp \
47 Actions/Reaction_impl_header.hpp \
48 Actions/Reaction_impl_pre.hpp \
49 Actions/UndoRedoHelpers.hpp \
50 Actions/Values.hpp
51
52ACTIONPROTOTYPESSOURCE = \
53 ${ANALYSISACTIONSOURCE} \
54 ${ATOMACTIONSOURCE} \
55 ${BONDACTIONSOURCE} \
56 ${CMDACTIONSOURCE} \
57 ${FILLACTIONSOURCE} \
58 ${FRAGMENTATIONACTIONSOURCE} \
59 ${GRAPHACTIONSOURCE} \
60 ${MOLECULEACTIONSOURCE} \
61 ${PARSERACTIONSOURCE} \
62 ${RANDONNUMBERSSOURCE} \
63 ${SELECTIONATOMACTIONSOURCE} \
64 ${SELECTIONMOLECULEACTIONSOURCE} \
65 ${SELECTIONSHAPEACTIONSOURCE} \
66 ${SHAPEACTIONSOURCE} \
67 ${TESSELATIONACTIONSOURCE} \
68 $(UNDOACTIONSOURCE) \
69 ${WORLDACTIONSOURCE}
70
71ACTIONPROTOTYPESHEADER = \
72 ${ANALYSISACTIONHEADER} \
73 ${ATOMACTIONHEADER} \
74 ${BONDACTIONHEADER} \
75 ${CMDACTIONHEADER} \
76 ${FILLACTIONHEADER} \
77 ${FRAGMENTATIONACTIONHEADER} \
78 ${GRAPHACTIONHEADER} \
79 ${MOLECULEACTIONHEADER} \
80 ${PARSERACTIONHEADER} \
81 ${RANDONNUMBERSHEADER} \
82 ${SELECTIONATOMACTIONHEADER} \
83 ${SELECTIONMOLECULEACTIONHEADER} \
84 ${SELECTIONSHAPEACTIONHEADER} \
85 ${SHAPEACTIONHEADER} \
86 ${TESSELATIONACTIONHEADER} \
87 $(UNDOACTIONHEADER) \
88 ${WORLDACTIONHEADER}
89
90ACTIONPROTOTYPESDEFS = \
91 ${ANALYSISACTIONDEFS} \
92 ${ATOMACTIONDEFS} \
93 ${BONDACTIONDEFS} \
94 ${CMDACTIONDEFS} \
95 ${FILLACTIONDEFS} \
96 ${FRAGMENTATIONACTIONDEFS} \
97 ${GRAPHACTIONDEFS} \
98 ${MOLECULEACTIONDEFS} \
99 ${PARSERACTIONDEFS} \
100 ${RANDONNUMBERSDEFS} \
101 ${SELECTIONATOMACTIONDEFS} \
102 ${SELECTIONMOLECULEACTIONDEFS} \
103 ${SELECTIONSHAPEACTIONDEFS} \
104 ${SHAPEACTIONDEFS} \
105 ${TESSELATIONACTIONDEFS} \
106 $(UNDOACTIONDEFS) \
107 ${WORLDACTIONDEFS}
108
109ANALYSISACTIONSOURCE = \
110 Actions/AnalysisAction/CalculateBoundingBoxAction.cpp \
111 Actions/AnalysisAction/CalculateCellVolumeAction.cpp \
112 Actions/AnalysisAction/CalculateMolarMassAction.cpp \
113 Actions/AnalysisAction/DipoleAngularCorrelationAction.cpp \
114 Actions/AnalysisAction/DipoleCorrelationAction.cpp \
115 Actions/AnalysisAction/MolecularVolumeAction.cpp \
116 Actions/AnalysisAction/PairCorrelationAction.cpp \
117 Actions/AnalysisAction/PointCorrelationAction.cpp \
118 Actions/AnalysisAction/PrincipalAxisSystemAction.cpp \
119 Actions/AnalysisAction/SurfaceCorrelationAction.cpp
120ANALYSISACTIONHEADER = \
121 Actions/AnalysisAction/CalculateBoundingBoxAction.hpp \
122 Actions/AnalysisAction/CalculateCellVolumeAction.hpp \
123 Actions/AnalysisAction/CalculateMolarMassAction.hpp \
124 Actions/AnalysisAction/DipoleAngularCorrelationAction.hpp \
125 Actions/AnalysisAction/DipoleCorrelationAction.hpp \
126 Actions/AnalysisAction/MolecularVolumeAction.hpp \
127 Actions/AnalysisAction/PairCorrelationAction.hpp \
128 Actions/AnalysisAction/PointCorrelationAction.hpp \
129 Actions/AnalysisAction/PrincipalAxisSystemAction.hpp \
130 Actions/AnalysisAction/SurfaceCorrelationAction.hpp
131ANALYSISACTIONDEFS = \
132 Actions/AnalysisAction/CalculateBoundingBoxAction.def \
133 Actions/AnalysisAction/CalculateCellVolumeAction.def \
134 Actions/AnalysisAction/CalculateMolarMassAction.def \
135 Actions/AnalysisAction/DipoleAngularCorrelationAction.def \
136 Actions/AnalysisAction/DipoleCorrelationAction.def \
137 Actions/AnalysisAction/MolecularVolumeAction.def \
138 Actions/AnalysisAction/PairCorrelationAction.def \
139 Actions/AnalysisAction/PointCorrelationAction.def \
140 Actions/AnalysisAction/PrincipalAxisSystemAction.def \
141 Actions/AnalysisAction/SurfaceCorrelationAction.def
142
143ATOMACTIONSOURCE = \
144 Actions/AtomAction/AddAction.cpp \
145 Actions/AtomAction/ChangeElementAction.cpp \
146 Actions/AtomAction/RemoveAction.cpp \
147 Actions/AtomAction/RotateAroundOriginByAngleAction.cpp \
148 Actions/AtomAction/SaveSelectedAtomsAction.cpp \
149 Actions/AtomAction/TranslateAction.cpp
150ATOMACTIONHEADER = \
151 Actions/AtomAction/AddAction.hpp \
152 Actions/AtomAction/ChangeElementAction.hpp \
153 Actions/AtomAction/RemoveAction.hpp \
154 Actions/AtomAction/RotateAroundOriginByAngleAction.hpp \
155 Actions/AtomAction/SaveSelectedAtomsAction.hpp \
156 Actions/AtomAction/TranslateAction.hpp
157ATOMACTIONDEFS = \
158 Actions/AtomAction/AddAction.def \
159 Actions/AtomAction/ChangeElementAction.def \
160 Actions/AtomAction/RemoveAction.def \
161 Actions/AtomAction/RotateAroundOriginByAngleAction.def \
162 Actions/AtomAction/SaveSelectedAtomsAction.def \
163 Actions/AtomAction/TranslateAction.def
164
165BONDACTIONSOURCE = \
166 Actions/BondAction/BondAddAction.cpp \
167 Actions/BondAction/BondRemoveAction.cpp
168BONDACTIONHEADER = \
169 Actions/BondAction/BondAddAction.hpp \
170 Actions/BondAction/BondRemoveAction.hpp
171BONDACTIONDEFS = \
172 Actions/BondAction/BondAddAction.def \
173 Actions/BondAction/BondRemoveAction.def
174
175CMDACTIONSOURCE = \
176 Actions/CommandAction/BondLengthTableAction.cpp \
177 Actions/CommandAction/ElementDbAction.cpp \
178 Actions/CommandAction/FastParsingAction.cpp \
179 Actions/CommandAction/HelpAction.cpp \
180 Actions/CommandAction/HelpRedistributeAction.cpp \
181 Actions/CommandAction/VerboseAction.cpp \
182 Actions/CommandAction/VersionAction.cpp \
183 Actions/CommandAction/WarrantyAction.cpp
184CMDACTIONHEADER = \
185 Actions/CommandAction/BondLengthTableAction.hpp \
186 Actions/CommandAction/ElementDbAction.hpp \
187 Actions/CommandAction/FastParsingAction.hpp \
188 Actions/CommandAction/HelpAction.hpp \
189 Actions/CommandAction/HelpRedistributeAction.hpp \
190 Actions/CommandAction/VerboseAction.hpp \
191 Actions/CommandAction/VersionAction.hpp \
192 Actions/CommandAction/WarrantyAction.hpp
193CMDACTIONDEFS = \
194 Actions/CommandAction/BondLengthTableAction.def \
195 Actions/CommandAction/ElementDbAction.def \
196 Actions/CommandAction/FastParsingAction.def \
197 Actions/CommandAction/HelpAction.def \
198 Actions/CommandAction/HelpRedistributeAction.def \
199 Actions/CommandAction/VerboseAction.def \
200 Actions/CommandAction/VersionAction.def \
201 Actions/CommandAction/WarrantyAction.def
202
203FILLACTIONSOURCE = \
204 Actions/FillAction/FillRegularGridAction.cpp \
205 Actions/FillAction/FillSurfaceAction.cpp
206FILLACTIONHEADER = \
207 Actions/FillAction/FillRegularGridAction.hpp \
208 Actions/FillAction/FillSurfaceAction.hpp
209FILLACTIONDEFS = \
210 Actions/FillAction/FillRegularGridAction.def \
211 Actions/FillAction/FillSurfaceAction.def
212
213
214FRAGMENTATIONACTIONSOURCE = \
215 Actions/FragmentationAction/FragmentationAction.cpp \
216 Actions/FragmentationAction/AnalyseFragmentationResultsAction.cpp \
217 Actions/FragmentationAction/StoreSaturatedFragmentAction.cpp
218FRAGMENTATIONACTIONHEADER = \
219 Actions/FragmentationAction/FragmentationAction.hpp \
220 Actions/FragmentationAction/AnalyseFragmentationResultsAction.hpp \
221 Actions/FragmentationAction/StoreSaturatedFragmentAction.hpp
222FRAGMENTATIONACTIONDEFS = \
223 Actions/FragmentationAction/FragmentationAction.def \
224 Actions/FragmentationAction/AnalyseFragmentationResultsAction.def \
225 Actions/FragmentationAction/StoreSaturatedFragmentAction.def
226
227if CONDJOBMARKET
228FRAGMENTATIONACTIONSOURCE += \
229 Actions/FragmentationAction/FragmentationAutomationAction.cpp \
230 Actions/FragmentationAction/ParseFragmentJobsAction.cpp
231FRAGMENTATIONACTIONHEADER += \
232 Actions/FragmentationAction/FragmentationAutomationAction.hpp \
233 Actions/FragmentationAction/ParseFragmentJobsAction.hpp
234FRAGMENTATIONACTIONDEFS += \
235 Actions/FragmentationAction/FragmentationAutomationAction.def \
236 Actions/FragmentationAction/ParseFragmentJobsAction.def
237endif
238
239if CONDLEVMAR
240FRAGMENTATIONACTIONSOURCE += \
241 Actions/FragmentationAction/FitPotentialAction.cpp
242FRAGMENTATIONACTIONHEADER += \
243 Actions/FragmentationAction/FitPotentialAction.hpp
244FRAGMENTATIONACTIONDEFS += \
245 Actions/FragmentationAction/FitPotentialAction.def
246endif
247
248
249GRAPHACTIONSOURCE = \
250 Actions/GraphAction/CreateAdjacencyAction.cpp \
251 Actions/GraphAction/DepthFirstSearchAction.cpp \
252 Actions/GraphAction/DestroyAdjacencyAction.cpp \
253 Actions/GraphAction/SubgraphDissectionAction.cpp \
254 Actions/GraphAction/UpdateMoleculesAction.cpp
255GRAPHACTIONHEADER = \
256 Actions/GraphAction/CreateAdjacencyAction.hpp \
257 Actions/GraphAction/DepthFirstSearchAction.hpp \
258 Actions/GraphAction/DestroyAdjacencyAction.hpp \
259 Actions/GraphAction/SubgraphDissectionAction.hpp \
260 Actions/GraphAction/UpdateMoleculesAction.hpp
261GRAPHACTIONDEFS = \
262 Actions/GraphAction/CreateAdjacencyAction.def \
263 Actions/GraphAction/DepthFirstSearchAction.def \
264 Actions/GraphAction/DestroyAdjacencyAction.def \
265 Actions/GraphAction/SubgraphDissectionAction.def \
266 Actions/GraphAction/UpdateMoleculesAction.def
267
268MOLECULEACTIONSOURCE = \
269 Actions/MoleculeAction/BondFileAction.cpp \
270 Actions/MoleculeAction/ChangeBondAngleAction.cpp \
271 Actions/MoleculeAction/ChangeNameAction.cpp \
272 Actions/MoleculeAction/CopyAction.cpp \
273 Actions/MoleculeAction/FillWithMoleculeAction.cpp \
274 Actions/MoleculeAction/FillVoidWithMoleculeAction.cpp \
275 Actions/MoleculeAction/LinearInterpolationofTrajectoriesAction.cpp \
276 Actions/MoleculeAction/LoadAction.cpp \
277 Actions/MoleculeAction/RotateAroundSelfByAngleAction.cpp \
278 Actions/MoleculeAction/RotateToPrincipalAxisSystemAction.cpp \
279 Actions/MoleculeAction/SaveSelectedMoleculesAction.cpp \
280 Actions/MoleculeAction/SaveAdjacencyAction.cpp \
281 Actions/MoleculeAction/SaveBondsAction.cpp \
282 Actions/MoleculeAction/SaveTemperatureAction.cpp \
283 Actions/MoleculeAction/StretchBondAction.cpp \
284 Actions/MoleculeAction/SuspendInWaterAction.cpp \
285 Actions/MoleculeAction/VerletIntegrationAction.cpp
286MOLECULEACTIONHEADER = \
287 Actions/MoleculeAction/BondFileAction.hpp \
288 Actions/MoleculeAction/ChangeBondAngleAction.hpp \
289 Actions/MoleculeAction/ChangeNameAction.hpp \
290 Actions/MoleculeAction/CopyAction.hpp \
291 Actions/MoleculeAction/FillWithMoleculeAction.hpp \
292 Actions/MoleculeAction/FillVoidWithMoleculeAction.hpp \
293 Actions/MoleculeAction/LinearInterpolationofTrajectoriesAction.hpp \
294 Actions/MoleculeAction/LoadAction.hpp \
295 Actions/MoleculeAction/RotateAroundSelfByAngleAction.hpp \
296 Actions/MoleculeAction/RotateToPrincipalAxisSystemAction.hpp \
297 Actions/MoleculeAction/SaveSelectedMoleculesAction.hpp \
298 Actions/MoleculeAction/SaveAdjacencyAction.hpp \
299 Actions/MoleculeAction/SaveBondsAction.hpp \
300 Actions/MoleculeAction/SaveTemperatureAction.hpp \
301 Actions/MoleculeAction/StretchBondAction.hpp \
302 Actions/MoleculeAction/SuspendInWaterAction.hpp \
303 Actions/MoleculeAction/VerletIntegrationAction.hpp
304MOLECULEACTIONDEFS = \
305 Actions/MoleculeAction/BondFileAction.def \
306 Actions/MoleculeAction/ChangeBondAngleAction.def \
307 Actions/MoleculeAction/ChangeNameAction.def \
308 Actions/MoleculeAction/CopyAction.def \
309 Actions/MoleculeAction/FillWithMoleculeAction.def \
310 Actions/MoleculeAction/FillVoidWithMoleculeAction.def \
311 Actions/MoleculeAction/LinearInterpolationofTrajectoriesAction.def \
312 Actions/MoleculeAction/LoadAction.def \
313 Actions/MoleculeAction/RotateAroundSelfByAngleAction.def \
314 Actions/MoleculeAction/RotateToPrincipalAxisSystemAction.def \
315 Actions/MoleculeAction/SaveSelectedMoleculesAction.def \
316 Actions/MoleculeAction/SaveAdjacencyAction.def \
317 Actions/MoleculeAction/SaveBondsAction.def \
318 Actions/MoleculeAction/SaveTemperatureAction.def \
319 Actions/MoleculeAction/StretchBondAction.def \
320 Actions/MoleculeAction/SuspendInWaterAction.def \
321 Actions/MoleculeAction/VerletIntegrationAction.def
322
323PARSERACTIONSOURCE = \
324 Actions/ParserAction/ParseTremoloPotentialsAction.cpp \
325 Actions/ParserAction/SaveSelectedAtomsAsExtTypesAction.cpp \
326 Actions/ParserAction/SetParserParametersAction.cpp \
327 Actions/ParserAction/SetOutputFormatsAction.cpp \
328 Actions/ParserAction/SetTremoloAtomdataAction.cpp
329PARSERACTIONHEADER = \
330 Actions/ParserAction/ParseTremoloPotentialsAction.hpp \
331 Actions/ParserAction/SaveSelectedAtomsAsExtTypesAction.hpp \
332 Actions/ParserAction/SetParserParametersAction.hpp \
333 Actions/ParserAction/SetOutputFormatsAction.hpp \
334 Actions/ParserAction/SetTremoloAtomdataAction.hpp
335PARSERACTIONDEFS = \
336 Actions/ParserAction/ParseTremoloPotentialsAction.def \
337 Actions/ParserAction/SaveSelectedAtomsAsExtTypesAction.def \
338 Actions/ParserAction/SetParserParametersAction.def \
339 Actions/ParserAction/SetOutputFormatsAction.def \
340 Actions/ParserAction/SetTremoloAtomdataAction.def
341
342RANDONNUMBERSSOURCE =\
343 Actions/RandomNumbersAction/SetRandomNumbersDistributionAction.cpp \
344 Actions/RandomNumbersAction/SetRandomNumbersEngineAction.cpp
345RANDONNUMBERSHEADER =\
346 Actions/RandomNumbersAction/SetRandomNumbersDistributionAction.hpp \
347 Actions/RandomNumbersAction/SetRandomNumbersEngineAction.hpp
348RANDONNUMBERSDEFS =\
349 Actions/RandomNumbersAction/SetRandomNumbersDistributionAction.def \
350 Actions/RandomNumbersAction/SetRandomNumbersEngineAction.def
351
352SELECTIONATOMACTIONSOURCE = \
353 Actions/SelectionAction/Atoms/AllAtomsAction.cpp \
354 Actions/SelectionAction/Atoms/AllAtomsInsideVolumeAction.cpp \
355 Actions/SelectionAction/Atoms/AllAtomsOfMoleculeAction.cpp \
356 Actions/SelectionAction/Atoms/AtomByElementAction.cpp \
357 Actions/SelectionAction/Atoms/AtomByIdAction.cpp \
358 Actions/SelectionAction/Atoms/AtomByOrderAction.cpp \
359 Actions/SelectionAction/Atoms/ClearAllAtomsAction.cpp \
360 Actions/SelectionAction/Atoms/InvertAtomsAction.cpp \
361 Actions/SelectionAction/Atoms/NotAllAtomsAction.cpp \
362 Actions/SelectionAction/Atoms/NotAllAtomsInsideVolumeAction.cpp \
363 Actions/SelectionAction/Atoms/NotAllAtomsOfMoleculeAction.cpp \
364 Actions/SelectionAction/Atoms/NotAtomByElementAction.cpp \
365 Actions/SelectionAction/Atoms/NotAtomByIdAction.cpp \
366 Actions/SelectionAction/Atoms/NotAtomByOrderAction.cpp
367SELECTIONATOMACTIONHEADER = \
368 Actions/SelectionAction/Atoms/AllAtomsAction.hpp \
369 Actions/SelectionAction/Atoms/AllAtomsInsideVolumeAction.hpp \
370 Actions/SelectionAction/Atoms/AllAtomsOfMoleculeAction.hpp \
371 Actions/SelectionAction/Atoms/AtomByElementAction.hpp \
372 Actions/SelectionAction/Atoms/AtomByIdAction.hpp \
373 Actions/SelectionAction/Atoms/AtomByOrderAction.hpp \
374 Actions/SelectionAction/Atoms/ClearAllAtomsAction.hpp \
375 Actions/SelectionAction/Atoms/InvertAtomsAction.hpp \
376 Actions/SelectionAction/Atoms/NotAllAtomsAction.hpp \
377 Actions/SelectionAction/Atoms/NotAllAtomsInsideVolumeAction.hpp \
378 Actions/SelectionAction/Atoms/NotAllAtomsOfMoleculeAction.hpp \
379 Actions/SelectionAction/Atoms/NotAtomByElementAction.hpp \
380 Actions/SelectionAction/Atoms/NotAtomByIdAction.hpp \
381 Actions/SelectionAction/Atoms/NotAtomByOrderAction.hpp
382SELECTIONATOMACTIONDEFS = \
383 Actions/SelectionAction/Atoms/AllAtomsAction.def \
384 Actions/SelectionAction/Atoms/AllAtomsInsideVolumeAction.def \
385 Actions/SelectionAction/Atoms/AllAtomsOfMoleculeAction.def \
386 Actions/SelectionAction/Atoms/AtomByElementAction.def \
387 Actions/SelectionAction/Atoms/AtomByIdAction.def \
388 Actions/SelectionAction/Atoms/AtomByOrderAction.def \
389 Actions/SelectionAction/Atoms/ClearAllAtomsAction.def \
390 Actions/SelectionAction/Atoms/InvertAtomsAction.def \
391 Actions/SelectionAction/Atoms/NotAllAtomsAction.def \
392 Actions/SelectionAction/Atoms/NotAllAtomsInsideVolumeAction.def \
393 Actions/SelectionAction/Atoms/NotAllAtomsOfMoleculeAction.def \
394 Actions/SelectionAction/Atoms/NotAtomByElementAction.def \
395 Actions/SelectionAction/Atoms/NotAtomByIdAction.def \
396 Actions/SelectionAction/Atoms/NotAtomByOrderAction.def
397
398SELECTIONMOLECULEACTIONSOURCE = \
399 Actions/SelectionAction/Molecules/AllMoleculesAction.cpp \
400 Actions/SelectionAction/Molecules/ClearAllMoleculesAction.cpp \
401 Actions/SelectionAction/Molecules/InvertMoleculesAction.cpp \
402 Actions/SelectionAction/Molecules/MoleculeByFormulaAction.cpp \
403 Actions/SelectionAction/Molecules/MoleculeByIdAction.cpp \
404 Actions/SelectionAction/Molecules/MoleculeByNameAction.cpp \
405 Actions/SelectionAction/Molecules/MoleculeByOrderAction.cpp \
406 Actions/SelectionAction/Molecules/MoleculeOfAtomAction.cpp \
407 Actions/SelectionAction/Molecules/NotAllMoleculesAction.cpp \
408 Actions/SelectionAction/Molecules/NotMoleculeByFormulaAction.cpp \
409 Actions/SelectionAction/Molecules/NotMoleculeByIdAction.cpp \
410 Actions/SelectionAction/Molecules/NotMoleculeByNameAction.cpp \
411 Actions/SelectionAction/Molecules/NotMoleculeByOrderAction.cpp \
412 Actions/SelectionAction/Molecules/NotMoleculeOfAtomAction.cpp
413SELECTIONMOLECULEACTIONHEADER = \
414 Actions/SelectionAction/Molecules/AllMoleculesAction.hpp \
415 Actions/SelectionAction/Molecules/ClearAllMoleculesAction.hpp \
416 Actions/SelectionAction/Molecules/InvertMoleculesAction.hpp \
417 Actions/SelectionAction/Molecules/MoleculeByFormulaAction.hpp \
418 Actions/SelectionAction/Molecules/MoleculeByIdAction.hpp \
419 Actions/SelectionAction/Molecules/MoleculeByNameAction.hpp \
420 Actions/SelectionAction/Molecules/MoleculeByOrderAction.hpp \
421 Actions/SelectionAction/Molecules/MoleculeOfAtomAction.hpp \
422 Actions/SelectionAction/Molecules/NotAllMoleculesAction.hpp \
423 Actions/SelectionAction/Molecules/NotMoleculeByFormulaAction.hpp \
424 Actions/SelectionAction/Molecules/NotMoleculeByIdAction.hpp \
425 Actions/SelectionAction/Molecules/NotMoleculeByNameAction.hpp \
426 Actions/SelectionAction/Molecules/NotMoleculeByOrderAction.hpp \
427 Actions/SelectionAction/Molecules/NotMoleculeOfAtomAction.hpp
428SELECTIONMOLECULEACTIONDEFS = \
429 Actions/SelectionAction/Molecules/AllMoleculesAction.def \
430 Actions/SelectionAction/Molecules/ClearAllMoleculesAction.def \
431 Actions/SelectionAction/Molecules/InvertMoleculesAction.def \
432 Actions/SelectionAction/Molecules/MoleculeByFormulaAction.def \
433 Actions/SelectionAction/Molecules/MoleculeByIdAction.def \
434 Actions/SelectionAction/Molecules/MoleculeByNameAction.def \
435 Actions/SelectionAction/Molecules/MoleculeByOrderAction.def \
436 Actions/SelectionAction/Molecules/MoleculeOfAtomAction.def \
437 Actions/SelectionAction/Molecules/NotAllMoleculesAction.def \
438 Actions/SelectionAction/Molecules/NotMoleculeByFormulaAction.def \
439 Actions/SelectionAction/Molecules/NotMoleculeByIdAction.def \
440 Actions/SelectionAction/Molecules/NotMoleculeByNameAction.def \
441 Actions/SelectionAction/Molecules/NotMoleculeByOrderAction.def \
442 Actions/SelectionAction/Molecules/NotMoleculeOfAtomAction.def
443
444SELECTIONSHAPEACTIONSOURCE = \
445 Actions/SelectionAction/Shapes/AllShapesAction.cpp \
446 Actions/SelectionAction/Shapes/ShapeByNameAction.cpp \
447 Actions/SelectionAction/Shapes/NotAllShapesAction.cpp \
448 Actions/SelectionAction/Shapes/NotShapeByNameAction.cpp
449SELECTIONSHAPEACTIONHEADER = \
450 Actions/SelectionAction/Shapes/AllShapesAction.hpp \
451 Actions/SelectionAction/Shapes/ShapeByNameAction.hpp \
452 Actions/SelectionAction/Shapes/NotAllShapesAction.hpp \
453 Actions/SelectionAction/Shapes/NotShapeByNameAction.hpp
454SELECTIONSHAPEACTIONDEFS = \
455 Actions/SelectionAction/Shapes/AllShapesAction.def \
456 Actions/SelectionAction/Shapes/ShapeByNameAction.def \
457 Actions/SelectionAction/Shapes/NotAllShapesAction.def \
458 Actions/SelectionAction/Shapes/NotShapeByNameAction.def
459
460SHAPEACTIONSOURCE = \
461 Actions/ShapeAction/CombineShapesAction.cpp \
462 Actions/ShapeAction/CreateShapeAction.cpp \
463 Actions/ShapeAction/RemoveShapeAction.cpp \
464 Actions/ShapeAction/RotateShapeAction.cpp \
465 Actions/ShapeAction/StretchShapeAction.cpp \
466 Actions/ShapeAction/TranslateShapeAction.cpp
467SHAPEACTIONHEADER = \
468 Actions/ShapeAction/CombineShapesAction.hpp \
469 Actions/ShapeAction/CreateShapeAction.hpp \
470 Actions/ShapeAction/RemoveShapeAction.hpp \
471 Actions/ShapeAction/RotateShapeAction.hpp \
472 Actions/ShapeAction/StretchShapeAction.hpp \
473 Actions/ShapeAction/TranslateShapeAction.hpp
474SHAPEACTIONDEFS = \
475 Actions/ShapeAction/CombineShapesAction.def \
476 Actions/ShapeAction/CreateShapeAction.def \
477 Actions/ShapeAction/RemoveShapeAction.def \
478 Actions/ShapeAction/RotateShapeAction.def \
479 Actions/ShapeAction/StretchShapeAction.def \
480 Actions/ShapeAction/TranslateShapeAction.def
481
482TESSELATIONACTIONSOURCE = \
483 Actions/TesselationAction/ConvexEnvelopeAction.cpp \
484 Actions/TesselationAction/NonConvexEnvelopeAction.cpp
485TESSELATIONACTIONHEADER = \
486 Actions/TesselationAction/ConvexEnvelopeAction.hpp \
487 Actions/TesselationAction/NonConvexEnvelopeAction.hpp
488TESSELATIONACTIONDEFS = \
489 Actions/TesselationAction/ConvexEnvelopeAction.def \
490 Actions/TesselationAction/NonConvexEnvelopeAction.def
491
492UNDOACTIONSOURCE = \
493 Actions/RedoAction.cpp \
494 Actions/UndoAction.cpp
495UNDOACTIONHEADER = \
496 Actions/RedoAction.hpp \
497 Actions/UndoAction.hpp
498UNDOACTIONDEFS = \
499 Actions/RedoAction.def \
500 Actions/UndoAction.def
501
502
503WORLDACTIONSOURCE = \
504 Actions/WorldAction/AddEmptyBoundaryAction.cpp \
505 Actions/WorldAction/BoundInBoxAction.cpp \
506 Actions/WorldAction/CenterInBoxAction.cpp \
507 Actions/WorldAction/CenterOnEdgeAction.cpp \
508 Actions/WorldAction/ChangeBoxAction.cpp \
509 Actions/WorldAction/InputAction.cpp \
510 Actions/WorldAction/OutputAction.cpp \
511 Actions/WorldAction/OutputAsAction.cpp \
512 Actions/WorldAction/RepeatBoxAction.cpp \
513 Actions/WorldAction/ScaleBoxAction.cpp \
514 Actions/WorldAction/SetBoundaryConditionsAction.cpp \
515 Actions/WorldAction/SetDefaultNameAction.cpp \
516 Actions/WorldAction/SetWorldTimeAction.cpp
517WORLDACTIONHEADER = \
518 Actions/WorldAction/AddEmptyBoundaryAction.hpp \
519 Actions/WorldAction/BoundInBoxAction.hpp \
520 Actions/WorldAction/CenterInBoxAction.hpp \
521 Actions/WorldAction/CenterOnEdgeAction.hpp \
522 Actions/WorldAction/ChangeBoxAction.hpp \
523 Actions/WorldAction/InputAction.hpp \
524 Actions/WorldAction/OutputAction.hpp \
525 Actions/WorldAction/OutputAsAction.hpp \
526 Actions/WorldAction/RepeatBoxAction.hpp \
527 Actions/WorldAction/ScaleBoxAction.hpp \
528 Actions/WorldAction/SetBoundaryConditionsAction.hpp \
529 Actions/WorldAction/SetDefaultNameAction.hpp \
530 Actions/WorldAction/SetWorldTimeAction.hpp
531WORLDACTIONDEFS = \
532 Actions/WorldAction/AddEmptyBoundaryAction.def \
533 Actions/WorldAction/BoundInBoxAction.def \
534 Actions/WorldAction/CenterInBoxAction.def \
535 Actions/WorldAction/CenterOnEdgeAction.def \
536 Actions/WorldAction/ChangeBoxAction.def \
537 Actions/WorldAction/InputAction.def \
538 Actions/WorldAction/OutputAction.def \
539 Actions/WorldAction/OutputAsAction.def \
540 Actions/WorldAction/RepeatBoxAction.def \
541 Actions/WorldAction/ScaleBoxAction.def \
542 Actions/WorldAction/SetBoundaryConditionsAction.def \
543 Actions/WorldAction/SetDefaultNameAction.def \
544 Actions/WorldAction/SetWorldTimeAction.def
545
546#ACTIONPYTHONSOURCE_WITHDIR = $(ACTIONPROTOTYPESSOURCE:Action.cpp=Action.python.cpp)
547#ACTIONPYTHONSOURCE = $(notdir $(ACTIONPYTHONSOURCE_WITHDIR))
548
549noinst_LTLIBRARIES += \
550 libMolecuilderActions.la \
551 libMolecuilderActionPrototypes.la
552# libMolecuilderActionPython.la
553libMolecuilderActionPrototypes_la_CPPFLAGS = $(AM_CPPFLAGS)
554if CONDJOBMARKET
555libMolecuilderActionPrototypes_la_CPPFLAGS += $(JobMarket_CFLAGS)
556endif
557if CONDLEVMAR
558libMolecuilderActionPrototypes_la_CPPFLAGS += $(LEVMAR_CPPFLAGS)
559endif
560libMolecuilderActions_la_includedir = $(includedir)/MoleCuilder/
561libMolecuilderActionPrototypes_la_includedir = $(includedir)/MoleCuilder/
562#libMolecuilderActionPython_la_includedir = $(includedir)/MoleCuilder/
563
564BUILT_SOURCES += AllActionHeaders.hpp
565if CONDPYTHON
566BUILT_SOURCES += AllActionPython.hpp
567endif
568#$(ACTIONPYTHONSOURCE)
569
570# UIElements/libMolecuilderUI.la
571nobase_libMolecuilderActions_la_include_HEADERS = ${ACTIONSHEADER}
572nobase_libMolecuilderActionPrototypes_la_include_HEADERS = ${ACTIONPROTOTYPESHEADER} ${ACTIONPROTOTYPESDEFS}
573nodist_libMolecuilderActionPrototypes_la_include_HEADERS = AllActionHeaders.hpp
574#nobase_libMolecuilderActionPython_la_include_HEADERS = ${ACTIONPROTOTYPESHEADER} ${ACTIONPROTOTYPESDEFS}
575#nodist_libMolecuilderActionPython_la_include_HEADERS = AllActionHeaders.hpp
576
577## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
578## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
579## will therefore be treated as if it were literally part of the target name,
580## and the variable name derived from that.
581## The file extension .cc is recognized by Automake, and makes it produce
582## rules which invoke the C++ compiler to produce a libtool object file (.lo)
583## from each source file. Note that it is not necessary to list header files
584## which are already listed elsewhere in a _HEADERS variable assignment.
585libMolecuilderActions_la_SOURCES = ${ACTIONSSOURCE}
586libMolecuilderActionPrototypes_la_SOURCES = ${ACTIONPROTOTYPESSOURCE}
587#libMolecuilderActionPython_la_SOURCES = ${ACTIONPYTHONSOURCE}
588
589## Instruct libtool to include ABI version information in the generated shared
590## library file (.so). The library ABI version is defined in configure.ac, so
591## that all version information is kept in one place.
592#libMolecuilderActions_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
593
594## The generated configuration header is installed in its own subdirectory of
595## $(libdir). The reason for this is that the configuration information put
596## into this header file describes the target platform the installed library
597## has been built for. Thus the file must not be installed into a location
598## intended for architecture-independent files, as defined by the Filesystem
599## Hierarchy Standard (FHS).
600## The nodist_ prefix instructs Automake to not generate rules for including
601## the listed files in the distribution on 'make dist'. Files that are listed
602## in _HEADERS variables are normally included in the distribution, but the
603## configuration header file is generated at configure time and should not be
604## shipped with the source tarball.
605#libMolecuilderActions_libincludedir = $(libdir)/MoleCuilder/include
606#nodist_libMolecuilderActions_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
607
608## Install the generated pkg-config file (.pc) into the expected location for
609## architecture-dependent package configuration information. Occasionally,
610## pkg-config files are also used for architecture-independent data packages,
611## in which case the correct install location would be $(datadir)/pkgconfig.
612#pkgconfigdir = $(libdir)/pkgconfig
613#pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
614
615#SUFFIXES = .pytho n.cpp
616#.python.cpp: $*.def
617# echo "#include \"$<\"" >$@; \
618# echo "#include \"Actions/Action_impl_python.hpp\"" >>$@; \
619# echo "#include \"Actions/Action_impl_undef.hpp\"" >>$@;
620
621AllActionHeaders.hpp: $(ACTIONPROTOTYPESHEADER) Actions/GlobalListOfActions.hpp
622 echo "#ifndef ALLACTIONHEADERS_HPP_" >$@; \
623 echo "#define ALLACTIONHEADERS_HPP_" >>$@; \
624 for file in $(ACTIONPROTOTYPESHEADER); do \
625 echo "#include \"$$file\"" >>$@; \
626 done; \
627 echo "#endif /* ALLACTIONHEADERS_HPP_ */" >>$@;
628
629MOSTLYCLEANFILES += \
630 AllActionHeaders.hpp
631
632if CONDPYTHON
633AllActionPython.hpp: $(ACTIONPROTOTYPESHEADER) Actions/GlobalListOfActions.hpp
634 echo "#ifndef ALLACTIONPYTHON_HPP_" >$@; \
635 echo "#define ALLACTIONPYTHON_HPP_" >>$@; \
636 for file in $(ACTIONPROTOTYPESHEADER); do \
637 echo "#include \"`echo $$file | sed -e 's/hpp/def/'`\"" >>$@; \
638 echo "#include \"Actions/Action_impl_python.hpp\"" >>$@; \
639 echo "#include \"Actions/Action_impl_undef.hpp\"" >>$@; \
640 done; \
641 echo "#endif /* ALLACTIONPYTHON_HPP_ */" >>$@;
642
643MOSTLYCLEANFILES += \
644 AllActionPython.hpp
645
646endif
Note: See TracBrowser for help on using the repository browser.