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