source: src/Actions/Makefile.am@ bcfb77

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since bcfb77 was 54088a, checked in by Frederik Heber <heber@…>, 13 years ago

Added first Reaction named CalculateCellVolumeAction.

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