source: src/Actions/Makefile.am@ fbf143

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

Outsourced parsing of fragment files into ParseFragmentJobsAction from FragmentationAutomationAction.

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