1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 | ACTIONSSOURCE = \
|
---|
5 | Actions/Action.cpp \
|
---|
6 | Actions/ActionHistory.cpp \
|
---|
7 | Actions/ActionRegistry.cpp \
|
---|
8 | Actions/ActionSequence.cpp \
|
---|
9 | Actions/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 |
|
---|
20 | ACTIONSHEADER = \
|
---|
21 | Actions/Action.hpp \
|
---|
22 | Actions/ActionHistory.hpp \
|
---|
23 | Actions/ActionRegistry.hpp \
|
---|
24 | Actions/ActionSequence.hpp \
|
---|
25 | Actions/ActionTraits.hpp \
|
---|
26 | Actions/Calculation.hpp \
|
---|
27 | Actions/Calculation_impl.hpp \
|
---|
28 | Actions/ErrorAction.hpp \
|
---|
29 | Actions/MakroAction.hpp \
|
---|
30 | Actions/ManipulateAtomsProcess.hpp \
|
---|
31 | Actions/MethodAction.hpp \
|
---|
32 | Actions/OptionRegistry.hpp \
|
---|
33 | Actions/OptionTrait.hpp \
|
---|
34 | Actions/Process.hpp \
|
---|
35 | Actions/Values.hpp \
|
---|
36 | Actions/ValueStorage.hpp
|
---|
37 |
|
---|
38 | ACTIONPROTOTYPESSOURCE = \
|
---|
39 | ${ANALYSISACTIONSOURCE} \
|
---|
40 | ${ATOMACTIONSOURCE} \
|
---|
41 | ${CMDACTIONSOURCE} \
|
---|
42 | ${FRAGMENTATIONACTIONSOURCE} \
|
---|
43 | ${GRAPHACTIONSOURCE} \
|
---|
44 | ${MOLECULEACTIONSOURCE} \
|
---|
45 | ${PARSERACTIONSOURCE} \
|
---|
46 | ${RANDONNUMBERSSOURCE} \
|
---|
47 | ${SELECTIONATOMACTIONSOURCE} \
|
---|
48 | ${SELECTIONMOLECULEACTIONSOURCE} \
|
---|
49 | ${TESSELATIONACTIONSOURCE} \
|
---|
50 | $(UNDOACTIONSOURCE) \
|
---|
51 | ${WORLDACTIONSOURCE}
|
---|
52 |
|
---|
53 | ACTIONPROTOTYPESHEADER = \
|
---|
54 | ${ANALYSISACTIONHEADER} \
|
---|
55 | ${ATOMACTIONHEADER} \
|
---|
56 | ${CMDACTIONHEADER} \
|
---|
57 | ${FRAGMENTATIONACTIONHEADER} \
|
---|
58 | ${GRAPHACTIONHEADER} \
|
---|
59 | ${MOLECULEACTIONHEADER} \
|
---|
60 | ${PARSERACTIONHEADER} \
|
---|
61 | ${RANDONNUMBERSHEADER} \
|
---|
62 | ${SELECTIONATOMACTIONHEADER} \
|
---|
63 | ${SELECTIONMOLECULEACTIONHEADER} \
|
---|
64 | ${TESSELATIONACTIONHEADER} \
|
---|
65 | $(UNDOACTIONHEADER) \
|
---|
66 | ${WORLDACTIONHEADER}
|
---|
67 |
|
---|
68 | ANALYSISACTIONSOURCE = \
|
---|
69 | Actions/AnalysisAction/DipoleAngularCorrelationAction.cpp \
|
---|
70 | Actions/AnalysisAction/MolecularVolumeAction.cpp \
|
---|
71 | Actions/AnalysisAction/PairCorrelationAction.cpp \
|
---|
72 | Actions/AnalysisAction/PointCorrelationAction.cpp \
|
---|
73 | Actions/AnalysisAction/PrincipalAxisSystemAction.cpp \
|
---|
74 | Actions/AnalysisAction/SurfaceCorrelationAction.cpp
|
---|
75 | ANALYSISACTIONHEADER = \
|
---|
76 | Actions/AnalysisAction/DipoleAngularCorrelationAction.hpp \
|
---|
77 | Actions/AnalysisAction/MolecularVolumeAction.hpp \
|
---|
78 | Actions/AnalysisAction/PairCorrelationAction.hpp \
|
---|
79 | Actions/AnalysisAction/PointCorrelationAction.hpp \
|
---|
80 | Actions/AnalysisAction/PrincipalAxisSystemAction.hpp \
|
---|
81 | Actions/AnalysisAction/SurfaceCorrelationAction.hpp
|
---|
82 |
|
---|
83 | ATOMACTIONSOURCE = \
|
---|
84 | Actions/AtomAction/AddAction.cpp \
|
---|
85 | Actions/AtomAction/ChangeElementAction.cpp \
|
---|
86 | Actions/AtomAction/RemoveAction.cpp \
|
---|
87 | Actions/AtomAction/RotateAroundOriginByAngleAction.cpp \
|
---|
88 | Actions/AtomAction/SaveSelectedAtomsAction.cpp \
|
---|
89 | Actions/AtomAction/TranslateAction.cpp
|
---|
90 | ATOMACTIONHEADER = \
|
---|
91 | Actions/AtomAction/AddAction.hpp \
|
---|
92 | Actions/AtomAction/ChangeElementAction.hpp \
|
---|
93 | Actions/AtomAction/RemoveAction.cpp \
|
---|
94 | Actions/AtomAction/RotateAroundOriginByAngleAction.hpp \
|
---|
95 | Actions/AtomAction/SaveSelectedAtomsAction.hpp \
|
---|
96 | Actions/AtomAction/TranslateAction.hpp
|
---|
97 |
|
---|
98 | CMDACTIONSOURCE = \
|
---|
99 | Actions/CommandAction/BondLengthTableAction.cpp \
|
---|
100 | Actions/CommandAction/ElementDbAction.cpp \
|
---|
101 | Actions/CommandAction/FastParsingAction.cpp \
|
---|
102 | Actions/CommandAction/HelpAction.cpp \
|
---|
103 | Actions/CommandAction/VerboseAction.cpp \
|
---|
104 | Actions/CommandAction/VersionAction.cpp \
|
---|
105 | Actions/CommandAction/WarrantyAction.cpp
|
---|
106 | CMDACTIONHEADER = \
|
---|
107 | Actions/CommandAction/BondLengthTableAction.hpp \
|
---|
108 | Actions/CommandAction/ElementDbAction.hpp \
|
---|
109 | Actions/CommandAction/FastParsingAction.hpp \
|
---|
110 | Actions/CommandAction/HelpAction.hpp \
|
---|
111 | Actions/CommandAction/VerboseAction.hpp \
|
---|
112 | Actions/CommandAction/VersionAction.hpp \
|
---|
113 | Actions/CommandAction/WarrantyAction.hpp
|
---|
114 |
|
---|
115 | FRAGMENTATIONACTIONSOURCE = \
|
---|
116 | Actions/FragmentationAction/FragmentationAction.cpp
|
---|
117 | FRAGMENTATIONACTIONHEADER = \
|
---|
118 | Actions/FragmentationAction/FragmentationAction.hpp
|
---|
119 |
|
---|
120 | GRAPHACTIONSOURCE = \
|
---|
121 | Actions/GraphAction/CreateAdjacencyAction.cpp \
|
---|
122 | Actions/GraphAction/DepthFirstSearchAction.cpp \
|
---|
123 | Actions/GraphAction/SubgraphDissectionAction.cpp
|
---|
124 | GRAPHACTIONHEADER = \
|
---|
125 | Actions/GraphAction/CreateAdjacencyAction.hpp \
|
---|
126 | Actions/GraphAction/DepthFirstSearchAction.hpp \
|
---|
127 | Actions/GraphAction/SubgraphDissectionAction.hpp
|
---|
128 |
|
---|
129 | MOLECULEACTIONSOURCE = \
|
---|
130 | Actions/MoleculeAction/BondFileAction.cpp \
|
---|
131 | Actions/MoleculeAction/ChangeNameAction.cpp \
|
---|
132 | Actions/MoleculeAction/CopyAction.cpp \
|
---|
133 | Actions/MoleculeAction/FillWithMoleculeAction.cpp \
|
---|
134 | Actions/MoleculeAction/FillVoidWithMoleculeAction.cpp \
|
---|
135 | Actions/MoleculeAction/LinearInterpolationofTrajectoriesAction.cpp \
|
---|
136 | Actions/MoleculeAction/LoadAction.cpp \
|
---|
137 | Actions/MoleculeAction/RotateAroundSelfByAngleAction.cpp \
|
---|
138 | Actions/MoleculeAction/RotateToPrincipalAxisSystemAction.cpp \
|
---|
139 | Actions/MoleculeAction/SaveSelectedMoleculesAction.cpp \
|
---|
140 | Actions/MoleculeAction/SaveAdjacencyAction.cpp \
|
---|
141 | Actions/MoleculeAction/SaveBondsAction.cpp \
|
---|
142 | Actions/MoleculeAction/SaveTemperatureAction.cpp \
|
---|
143 | Actions/MoleculeAction/SuspendInWaterAction.cpp \
|
---|
144 | Actions/MoleculeAction/VerletIntegrationAction.cpp
|
---|
145 | MOLECULEACTIONHEADER = \
|
---|
146 | Actions/MoleculeAction/BondFileAction.hpp \
|
---|
147 | Actions/MoleculeAction/ChangeNameAction.hpp \
|
---|
148 | Actions/MoleculeAction/CopyAction.hpp \
|
---|
149 | Actions/MoleculeAction/FillWithMoleculeAction.hpp \
|
---|
150 | Actions/MoleculeAction/FillVoidWithMoleculeAction.hpp \
|
---|
151 | Actions/MoleculeAction/LinearInterpolationofTrajectoriesAction.hpp \
|
---|
152 | Actions/MoleculeAction/LoadAction.cpp \
|
---|
153 | Actions/MoleculeAction/RotateAroundSelfByAngleAction.hpp \
|
---|
154 | Actions/MoleculeAction/RotateToPrincipalAxisSystemAction.hpp \
|
---|
155 | Actions/MoleculeAction/SaveSelectedMoleculesAction.hpp \
|
---|
156 | Actions/MoleculeAction/SaveAdjacencyAction.hpp \
|
---|
157 | Actions/MoleculeAction/SaveBondsAction.hpp \
|
---|
158 | Actions/MoleculeAction/SaveTemperatureAction.hpp \
|
---|
159 | Actions/MoleculeAction/SuspendInWaterAction.hpp \
|
---|
160 | Actions/MoleculeAction/VerletIntegrationAction.hpp
|
---|
161 |
|
---|
162 | PARSERACTIONSOURCE = \
|
---|
163 | Actions/ParserAction/ParseTremoloPotentialsAction.cpp \
|
---|
164 | Actions/ParserAction/SetMpqcParametersAction.cpp \
|
---|
165 | Actions/ParserAction/SetOutputFormatsAction.cpp
|
---|
166 | PARSERACTIONHEADER = \
|
---|
167 | Actions/ParserAction/ParseTremoloPotentialsAction.hpp \
|
---|
168 | Actions/ParserAction/SetMpqcParametersAction.hpp \
|
---|
169 | Actions/ParserAction/SetOutputFormatsAction.hpp
|
---|
170 |
|
---|
171 | RANDONNUMBERSSOURCE =\
|
---|
172 | Actions/RandomNumbersAction/SetRandomNumbersDistributionAction.cpp \
|
---|
173 | Actions/RandomNumbersAction/SetRandomNumbersEngineAction.cpp
|
---|
174 | RANDONNUMBERSHEADER =\
|
---|
175 | Actions/RandomNumbersAction/SetRandomNumbersDistributionAction.hpp \
|
---|
176 | Actions/RandomNumbersAction/SetRandomNumbersEngineAction.hpp
|
---|
177 |
|
---|
178 | SELECTIONATOMACTIONSOURCE = \
|
---|
179 | Actions/SelectionAction/Atoms/AllAtomsAction.cpp \
|
---|
180 | Actions/SelectionAction/Atoms/AllAtomsInsideCuboidAction.cpp \
|
---|
181 | Actions/SelectionAction/Atoms/AllAtomsInsideSphereAction.cpp \
|
---|
182 | Actions/SelectionAction/Atoms/AllAtomsOfMoleculeAction.cpp \
|
---|
183 | Actions/SelectionAction/Atoms/AtomByElementAction.cpp \
|
---|
184 | Actions/SelectionAction/Atoms/AtomByIdAction.cpp \
|
---|
185 | Actions/SelectionAction/Atoms/ClearAllAtomsAction.cpp \
|
---|
186 | Actions/SelectionAction/Atoms/NotAllAtomsAction.cpp \
|
---|
187 | Actions/SelectionAction/Atoms/NotAllAtomsInsideCuboidAction.cpp \
|
---|
188 | Actions/SelectionAction/Atoms/NotAllAtomsInsideSphereAction.cpp \
|
---|
189 | Actions/SelectionAction/Atoms/NotAllAtomsOfMoleculeAction.cpp \
|
---|
190 | Actions/SelectionAction/Atoms/NotAtomByElementAction.cpp \
|
---|
191 | Actions/SelectionAction/Atoms/NotAtomByIdAction.cpp
|
---|
192 | SELECTIONATOMACTIONHEADER = \
|
---|
193 | Actions/SelectionAction/Atoms/AllAtomsAction.hpp \
|
---|
194 | Actions/SelectionAction/Atoms/AllAtomsInsideCuboidAction.hpp \
|
---|
195 | Actions/SelectionAction/Atoms/AllAtomsInsideSphereAction.hpp \
|
---|
196 | Actions/SelectionAction/Atoms/AllAtomsOfMoleculeAction.hpp \
|
---|
197 | Actions/SelectionAction/Atoms/AtomByElementAction.hpp \
|
---|
198 | Actions/SelectionAction/Atoms/AtomByIdAction.hpp \
|
---|
199 | Actions/SelectionAction/Atoms/ClearAllAtomsAction.hpp \
|
---|
200 | Actions/SelectionAction/Atoms/NotAllAtomsAction.hpp \
|
---|
201 | Actions/SelectionAction/Atoms/NotAllAtomsInsideCuboidAction.hpp \
|
---|
202 | Actions/SelectionAction/Atoms/NotAllAtomsInsideSphereAction.hpp \
|
---|
203 | Actions/SelectionAction/Atoms/NotAllAtomsOfMoleculeAction.hpp \
|
---|
204 | Actions/SelectionAction/Atoms/NotAtomByElementAction.hpp \
|
---|
205 | Actions/SelectionAction/Atoms/NotAtomByIdAction.hpp
|
---|
206 |
|
---|
207 | SELECTIONMOLECULEACTIONSOURCE = \
|
---|
208 | Actions/SelectionAction/Molecules/AllMoleculesAction.cpp \
|
---|
209 | Actions/SelectionAction/Molecules/ClearAllMoleculesAction.cpp \
|
---|
210 | Actions/SelectionAction/Molecules/MoleculeByFormulaAction.cpp \
|
---|
211 | Actions/SelectionAction/Molecules/MoleculeByIdAction.cpp \
|
---|
212 | Actions/SelectionAction/Molecules/MoleculeByNameAction.cpp \
|
---|
213 | Actions/SelectionAction/Molecules/MoleculeByOrderAction.cpp \
|
---|
214 | Actions/SelectionAction/Molecules/MoleculeOfAtomAction.cpp \
|
---|
215 | Actions/SelectionAction/Molecules/NotAllMoleculesAction.cpp \
|
---|
216 | Actions/SelectionAction/Molecules/NotMoleculeByFormulaAction.cpp \
|
---|
217 | Actions/SelectionAction/Molecules/NotMoleculeByIdAction.cpp \
|
---|
218 | Actions/SelectionAction/Molecules/NotMoleculeByNameAction.cpp \
|
---|
219 | Actions/SelectionAction/Molecules/NotMoleculeByOrderAction.cpp \
|
---|
220 | Actions/SelectionAction/Molecules/NotMoleculeOfAtomAction.cpp
|
---|
221 | SELECTIONMOLECULEACTIONHEADER = \
|
---|
222 | Actions/SelectionAction/Molecules/AllMoleculesAction.hpp \
|
---|
223 | Actions/SelectionAction/Molecules/ClearAllMoleculesAction.hpp \
|
---|
224 | Actions/SelectionAction/Molecules/MoleculeByFormulaAction.hpp \
|
---|
225 | Actions/SelectionAction/Molecules/MoleculeByIdAction.hpp \
|
---|
226 | Actions/SelectionAction/Molecules/MoleculeByNameAction.hpp \
|
---|
227 | Actions/SelectionAction/Molecules/MoleculeByOrderAction.hpp \
|
---|
228 | Actions/SelectionAction/Molecules/MoleculeOfAtomAction.hpp \
|
---|
229 | Actions/SelectionAction/Molecules/NotAllMoleculesAction.hpp \
|
---|
230 | Actions/SelectionAction/Molecules/NotMoleculeByFormulaAction.hpp \
|
---|
231 | Actions/SelectionAction/Molecules/NotMoleculeByIdAction.hpp \
|
---|
232 | Actions/SelectionAction/Molecules/NotMoleculeByNameAction.hpp \
|
---|
233 | Actions/SelectionAction/Molecules/NotMoleculeByOrderAction.hpp \
|
---|
234 | Actions/SelectionAction/Molecules/NotMoleculeOfAtomAction.hpp
|
---|
235 |
|
---|
236 | TESSELATIONACTIONSOURCE = \
|
---|
237 | Actions/TesselationAction/ConvexEnvelopeAction.cpp \
|
---|
238 | Actions/TesselationAction/NonConvexEnvelopeAction.cpp
|
---|
239 | TESSELATIONACTIONHEADER = \
|
---|
240 | Actions/TesselationAction/ConvexEnvelopeAction.hpp \
|
---|
241 | Actions/TesselationAction/NonConvexEnvelopeAction.hpp
|
---|
242 |
|
---|
243 | UNDOACTIONSOURCE = \
|
---|
244 | Actions/RedoAction.cpp \
|
---|
245 | Actions/UndoAction.cpp
|
---|
246 | UNDOACTIONHEADER = \
|
---|
247 | Actions/RedoAction.hpp \
|
---|
248 | Actions/UndoAction.hpp
|
---|
249 |
|
---|
250 |
|
---|
251 | WORLDACTIONSOURCE = \
|
---|
252 | Actions/WorldAction/AddEmptyBoundaryAction.cpp \
|
---|
253 | Actions/WorldAction/BoundInBoxAction.cpp \
|
---|
254 | Actions/WorldAction/CenterInBoxAction.cpp \
|
---|
255 | Actions/WorldAction/CenterOnEdgeAction.cpp \
|
---|
256 | Actions/WorldAction/ChangeBoxAction.cpp \
|
---|
257 | Actions/WorldAction/InputAction.cpp \
|
---|
258 | Actions/WorldAction/OutputAction.cpp \
|
---|
259 | Actions/WorldAction/RepeatBoxAction.cpp \
|
---|
260 | Actions/WorldAction/ScaleBoxAction.cpp \
|
---|
261 | Actions/WorldAction/SetDefaultNameAction.cpp \
|
---|
262 | Actions/WorldAction/SetWorldTimeAction.cpp
|
---|
263 | WORLDACTIONHEADER = \
|
---|
264 | Actions/WorldAction/AddEmptyBoundaryAction.hpp \
|
---|
265 | Actions/WorldAction/BoundInBoxAction.hpp \
|
---|
266 | Actions/WorldAction/CenterInBoxAction.hpp \
|
---|
267 | Actions/WorldAction/CenterOnEdgeAction.hpp \
|
---|
268 | Actions/WorldAction/ChangeBoxAction.hpp \
|
---|
269 | Actions/WorldAction/InputAction.hpp \
|
---|
270 | Actions/WorldAction/OutputAction.hpp \
|
---|
271 | Actions/WorldAction/RepeatBoxAction.hpp \
|
---|
272 | Actions/WorldAction/ScaleBoxAction.hpp \
|
---|
273 | Actions/WorldAction/SetDefaultNameAction.hpp \
|
---|
274 | Actions/WorldAction/SetWorldTimeAction.hpp
|
---|
275 |
|
---|
276 |
|
---|
277 | noinst_LTLIBRARIES += \
|
---|
278 | libMolecuilderActions.la \
|
---|
279 | libMolecuilderActionPrototypes.la
|
---|
280 | libMolecuilderActions_la_includedir = $(includedir)/MoleCuilder/Actions/
|
---|
281 | libMolecuilderActionPrototypes_la_includedir = $(includedir)/MoleCuilder/Actions/
|
---|
282 |
|
---|
283 | # UIElements/libMolecuilderUI.la
|
---|
284 | nobase_libMolecuilderActions_la_include_HEADERS = ${ACTIONSHEADER}
|
---|
285 | nobase_libMolecuilderActionPrototypes_la_include_HEADERS = ${ACTIONPROTOTYPESHEADER}
|
---|
286 |
|
---|
287 | ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
|
---|
288 | ## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
|
---|
289 | ## will therefore be treated as if it were literally part of the target name,
|
---|
290 | ## and the variable name derived from that.
|
---|
291 | ## The file extension .cc is recognized by Automake, and makes it produce
|
---|
292 | ## rules which invoke the C++ compiler to produce a libtool object file (.lo)
|
---|
293 | ## from each source file. Note that it is not necessary to list header files
|
---|
294 | ## which are already listed elsewhere in a _HEADERS variable assignment.
|
---|
295 | libMolecuilderActions_la_SOURCES = ${ACTIONSSOURCE}
|
---|
296 | libMolecuilderActionPrototypes_la_SOURCES = ${ACTIONPROTOTYPESSOURCE}
|
---|
297 |
|
---|
298 | ## Instruct libtool to include ABI version information in the generated shared
|
---|
299 | ## library file (.so). The library ABI version is defined in configure.ac, so
|
---|
300 | ## that all version information is kept in one place.
|
---|
301 | #libMolecuilderActions_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
|
---|
302 |
|
---|
303 | ## The generated configuration header is installed in its own subdirectory of
|
---|
304 | ## $(libdir). The reason for this is that the configuration information put
|
---|
305 | ## into this header file describes the target platform the installed library
|
---|
306 | ## has been built for. Thus the file must not be installed into a location
|
---|
307 | ## intended for architecture-independent files, as defined by the Filesystem
|
---|
308 | ## Hierarchy Standard (FHS).
|
---|
309 | ## The nodist_ prefix instructs Automake to not generate rules for including
|
---|
310 | ## the listed files in the distribution on 'make dist'. Files that are listed
|
---|
311 | ## in _HEADERS variables are normally included in the distribution, but the
|
---|
312 | ## configuration header file is generated at configure time and should not be
|
---|
313 | ## shipped with the source tarball.
|
---|
314 | #libMolecuilderActions_libincludedir = $(libdir)/MoleCuilder/include
|
---|
315 | #nodist_libMolecuilderActions_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
|
---|
316 |
|
---|
317 | ## Install the generated pkg-config file (.pc) into the expected location for
|
---|
318 | ## architecture-dependent package configuration information. Occasionally,
|
---|
319 | ## pkg-config files are also used for architecture-independent data packages,
|
---|
320 | ## in which case the correct install location would be $(datadir)/pkgconfig.
|
---|
321 | #pkgconfigdir = $(libdir)/pkgconfig
|
---|
322 | #pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
|
---|