source: src/Actions/Makefile.am@ abae35

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 abae35 was c015b3, checked in by Frederik Heber <heber@…>, 13 years ago

Added enable-switches for Qt-based GUI and python module and scripts.

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