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