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