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