source: src/Actions/Makefile.am@ 4f44ae

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 4f44ae was 22b786, checked in by Frederik Heber <heber@…>, 12 years ago

Made SubgraphDissection a MakroAction and added UpdateMoleculesAction.

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