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