source: src/Actions/Makefile.am@ caeeb8

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 caeeb8 was dd8990, checked in by Frederik Heber <heber@…>, 14 years ago

FIX: .def files of Actions have not been present in Makefile.am, although similar to headers.

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