source: src/Actions/Makefile.am@ f844ef

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

Splitted SelectionAction modules into two groups - atoms, molecules - and each into a subfolder.

  • had to adapt includes in all .cpp files as they contained some stupid relative path.
  • This is sensible as there are quite a large amount of SelectionActions and it is hard to discern the ones which select atoms and which select molecules.
  • Property mode set to 100644
File size: 11.1 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4INCLUDES = -I$(top_srcdir)/src
5
6AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
7AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
8AM_CPPFLAGS = ${BOOST_CPPFLAGS}
9
10ACTIONSSOURCE = \
11 ${ANALYSISACTIONSOURCE} \
12 ${ATOMACTIONSOURCE} \
13 ${CMDACTIONSOURCE} \
14 ${FRAGMENTATIONACTIONSOURCE} \
15 ${MOLECULEACTIONSOURCE} \
16 ${PARSERACTIONSOURCE} \
17 ${SELECTIONATOMACTIONSOURCE} \
18 ${SELECTIONMOLECULEACTIONSOURCE} \
19 ${TESSELATIONACTIONSOURCE} \
20 ${WORLDACTIONSOURCE} \
21 RedoAction.cpp \
22 UndoAction.cpp \
23 ValueStorage.cpp
24
25ACTIONSHEADER = \
26 ${ANALYSISACTIONHEADER} \
27 ${ATOMACTIONHEADER} \
28 ${CMDACTIONHEADER} \
29 ${FRAGMENTATIONACTIONHEADER} \
30 ${MOLECULEACTIONHEADER} \
31 ${PARSERACTIONHEADER} \
32 ${SELECTIONATOMACTIONHEADER} \
33 ${SELECTIONMOLECULEACTIONHEADER} \
34 ${TESSELATIONACTIONHEADER} \
35 ${WORLDACTIONHEADER} \
36 ValueStorage.hpp \
37 Values.hpp
38
39ANALYSISACTIONSOURCE = \
40 AnalysisAction/MolecularVolumeAction.cpp \
41 AnalysisAction/PairCorrelationAction.cpp \
42 AnalysisAction/PointCorrelationAction.cpp \
43 AnalysisAction/PrincipalAxisSystemAction.cpp \
44 AnalysisAction/SurfaceCorrelationAction.cpp
45ANALYSISACTIONHEADER = \
46 AnalysisAction/MolecularVolumeAction.hpp \
47 AnalysisAction/PairCorrelationAction.hpp \
48 AnalysisAction/PointCorrelationAction.hpp \
49 AnalysisAction/PrincipalAxisSystemAction.hpp \
50 AnalysisAction/SurfaceCorrelationAction.hpp
51
52ATOMACTIONSOURCE = \
53 AtomAction/AddAction.cpp \
54 AtomAction/ChangeElementAction.cpp \
55 AtomAction/RemoveAction.cpp \
56 AtomAction/RotateAroundOriginByAngleAction.cpp \
57 AtomAction/TranslateAction.cpp
58ATOMACTIONHEADER = \
59 AtomAction/AddAction.hpp \
60 AtomAction/ChangeElementAction.hpp \
61 AtomAction/RemoveAction.cpp \
62 AtomAction/RotateAroundOriginByAngleAction.hpp \
63 AtomAction/TranslateAction.hpp
64
65CMDACTIONSOURCE = \
66 CommandAction/BondLengthTableAction.cpp \
67 CommandAction/ElementDbAction.cpp \
68 CommandAction/FastParsingAction.cpp \
69 CommandAction/HelpAction.cpp \
70 CommandAction/VerboseAction.cpp \
71 CommandAction/VersionAction.cpp \
72 CommandAction/WarrantyAction.cpp
73CMDACTIONHEADER = \
74 CommandAction/BondLengthTableAction.hpp \
75 CommandAction/ElementDbAction.hpp \
76 CommandAction/FastParsingAction.hpp \
77 CommandAction/HelpAction.hpp \
78 CommandAction/VerboseAction.hpp \
79 CommandAction/VersionAction.hpp \
80 CommandAction/WarrantyAction.hpp
81
82FRAGMENTATIONACTIONSOURCE = \
83 FragmentationAction/ConstructBondGraphAction.cpp \
84 FragmentationAction/DepthFirstSearchAction.cpp \
85 FragmentationAction/FragmentationAction.cpp \
86 FragmentationAction/SubgraphDissectionAction.cpp
87FRAGMENTATIONACTIONHEADER = \
88 FragmentationAction/ConstructBondGraphAction.hpp \
89 FragmentationAction/DepthFirstSearchAction.hpp \
90 FragmentationAction/FragmentationAction.hpp \
91 FragmentationAction/SubgraphDissectionAction.hpp
92
93MOLECULEACTIONSOURCE = \
94 MoleculeAction/BondFileAction.cpp \
95 MoleculeAction/ChangeNameAction.cpp \
96 MoleculeAction/CopyAction.cpp \
97 MoleculeAction/FillWithMoleculeAction.cpp \
98 MoleculeAction/FillVoidWithMoleculeAction.cpp \
99 MoleculeAction/LinearInterpolationofTrajectoriesAction.cpp \
100 MoleculeAction/LoadAction.cpp \
101 MoleculeAction/RotateAroundSelfByAngleAction.cpp \
102 MoleculeAction/RotateToPrincipalAxisSystemAction.cpp \
103 MoleculeAction/SaveAction.cpp \
104 MoleculeAction/SaveAdjacencyAction.cpp \
105 MoleculeAction/SaveBondsAction.cpp \
106 MoleculeAction/SaveTemperatureAction.cpp \
107 MoleculeAction/SuspendInWaterAction.cpp \
108 MoleculeAction/VerletIntegrationAction.cpp
109MOLECULEACTIONHEADER = \
110 MoleculeAction/BondFileAction.hpp \
111 MoleculeAction/ChangeNameAction.hpp \
112 MoleculeAction/CopyAction.hpp \
113 MoleculeAction/FillWithMoleculeAction.hpp \
114 MoleculeAction/FillVoidWithMoleculeAction.hpp \
115 MoleculeAction/LinearInterpolationofTrajectoriesAction.hpp \
116 MoleculeAction/LoadAction.cpp \
117 MoleculeAction/RotateAroundSelfByAngleAction.hpp \
118 MoleculeAction/RotateToPrincipalAxisSystemAction.hpp \
119 MoleculeAction/SaveAction.hpp \
120 MoleculeAction/SaveAdjacencyAction.hpp \
121 MoleculeAction/SaveBondsAction.hpp \
122 MoleculeAction/SaveTemperatureAction.hpp \
123 MoleculeAction/SuspendInWaterAction.hpp \
124 MoleculeAction/VerletIntegrationAction.hpp
125
126SELECTIONATOMACTIONSOURCE = \
127 SelectionAction/Atoms/AllAtomsAction.cpp \
128 SelectionAction/Atoms/AllAtomsInsideCuboidAction.cpp \
129 SelectionAction/Atoms/AllAtomsInsideSphereAction.cpp \
130 SelectionAction/Atoms/AllAtomsOfMoleculeAction.cpp \
131 SelectionAction/Atoms/AtomByElementAction.cpp \
132 SelectionAction/Atoms/AtomByIdAction.cpp \
133 SelectionAction/Atoms/ClearAllAtomsAction.cpp \
134 SelectionAction/Atoms/NotAllAtomsAction.cpp \
135 SelectionAction/Atoms/NotAllAtomsInsideCuboidAction.cpp \
136 SelectionAction/Atoms/NotAllAtomsInsideSphereAction.cpp \
137 SelectionAction/Atoms/NotAllAtomsOfMoleculeAction.cpp \
138 SelectionAction/Atoms/NotAtomByElementAction.cpp \
139 SelectionAction/Atoms/NotAtomByIdAction.cpp
140SELECTIONATOMACTIONHEADER = \
141 SelectionAction/Atoms/AllAtomsAction.hpp \
142 SelectionAction/Atoms/AllAtomsInsideCuboidAction.hpp \
143 SelectionAction/Atoms/AllAtomsInsideSphereAction.hpp \
144 SelectionAction/Atoms/AllAtomsOfMoleculeAction.hpp \
145 SelectionAction/Atoms/AtomByElementAction.hpp \
146 SelectionAction/Atoms/AtomByIdAction.hpp \
147 SelectionAction/Atoms/ClearAllAtomsAction.hpp \
148 SelectionAction/Atoms/NotAllAtomsAction.hpp \
149 SelectionAction/Atoms/NotAllAtomsInsideCuboidAction.hpp \
150 SelectionAction/Atoms/NotAllAtomsInsideSphereAction.hpp \
151 SelectionAction/Atoms/NotAllAtomsOfMoleculeAction.hpp \
152 SelectionAction/Atoms/NotAtomByElementAction.hpp \
153 SelectionAction/Atoms/NotAtomByIdAction.hpp
154
155SELECTIONMOLECULEACTIONSOURCE = \
156 SelectionAction/Molecules/AllMoleculesAction.cpp \
157 SelectionAction/Molecules/ClearAllMoleculesAction.cpp \
158 SelectionAction/Molecules/MoleculeByFormulaAction.cpp \
159 SelectionAction/Molecules/MoleculeByIdAction.cpp \
160 SelectionAction/Molecules/MoleculeByNameAction.cpp \
161 SelectionAction/Molecules/MoleculeByOrderAction.cpp \
162 SelectionAction/Molecules/MoleculeOfAtomAction.cpp \
163 SelectionAction/Molecules/NotAllMoleculesAction.cpp \
164 SelectionAction/Molecules/NotMoleculeByFormulaAction.cpp \
165 SelectionAction/Molecules/NotMoleculeByIdAction.cpp \
166 SelectionAction/Molecules/NotMoleculeByNameAction.cpp \
167 SelectionAction/Molecules/NotMoleculeByOrderAction.cpp \
168 SelectionAction/Molecules/NotMoleculeOfAtomAction.cpp
169SELECTIONMOLECULEACTIONHEADER = \
170 SelectionAction/Molecules/AllMoleculesAction.hpp \
171 SelectionAction/Molecules/ClearAllMoleculesAction.hpp \
172 SelectionAction/Molecules/MoleculeByFormulaAction.hpp \
173 SelectionAction/Molecules/MoleculeByIdAction.hpp \
174 SelectionAction/Molecules/MoleculeByNameAction.hpp \
175 SelectionAction/Molecules/MoleculeByOrderAction.hpp \
176 SelectionAction/Molecules/MoleculeOfAtomAction.hpp \
177 SelectionAction/Molecules/NotAllMoleculesAction.hpp \
178 SelectionAction/Molecules/NotMoleculeByFormulaAction.hpp \
179 SelectionAction/Molecules/NotMoleculeByIdAction.hpp \
180 SelectionAction/Molecules/NotMoleculeByNameAction.hpp \
181 SelectionAction/Molecules/NotMoleculeByOrderAction.hpp \
182 SelectionAction/Molecules/NotMoleculeOfAtomAction.hpp
183
184TESSELATIONACTIONSOURCE = \
185 TesselationAction/ConvexEnvelopeAction.cpp \
186 TesselationAction/NonConvexEnvelopeAction.cpp
187TESSELATIONACTIONHEADER = \
188 TesselationAction/ConvexEnvelopeAction.hpp \
189 TesselationAction/NonConvexEnvelopeAction.hpp
190
191WORLDACTIONSOURCE = \
192 WorldAction/AddEmptyBoundaryAction.cpp \
193 WorldAction/BoundInBoxAction.cpp \
194 WorldAction/CenterInBoxAction.cpp \
195 WorldAction/CenterOnEdgeAction.cpp \
196 WorldAction/ChangeBoxAction.cpp \
197 WorldAction/InputAction.cpp \
198 WorldAction/OutputAction.cpp \
199 WorldAction/RepeatBoxAction.cpp \
200 WorldAction/ScaleBoxAction.cpp \
201 WorldAction/SetDefaultNameAction.cpp \
202 WorldAction/SetGaussianBasisAction.cpp \
203 WorldAction/SetOutputFormatsAction.cpp
204WORLDACTIONHEADER = \
205 WorldAction/AddEmptyBoundaryAction.hpp \
206 WorldAction/BoundInBoxAction.hpp \
207 WorldAction/CenterInBoxAction.hpp \
208 WorldAction/CenterOnEdgeAction.hpp \
209 WorldAction/ChangeBoxAction.hpp \
210 WorldAction/InputAction.hpp \
211 WorldAction/OutputAction.hpp \
212 WorldAction/RepeatBoxAction.hpp \
213 WorldAction/ScaleBoxAction.hpp \
214 WorldAction/SetDefaultNameAction.hpp \
215 WorldAction/SetGaussianBasisAction.hpp \
216 WorldAction/SetOutputFormatsAction.hpp
217
218
219lib_LTLIBRARIES = libMolecuilderActions-@MOLECUILDER_API_VERSION@.la
220libMolecuilderActions_includedir = $(includedir)/molecuilder-$(MOLECUILDER_API_VERSION)/Actions/
221libMolecuilderActions_libs = \
222 ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la \
223 ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la
224nobase_libMolecuilderActions_include_HEADERS = ${ACTIONSHEADER}
225
226## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
227## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
228## will therefore be treated as if it were literally part of the target name,
229## and the variable name derived from that.
230## The file extension .cc is recognized by Automake, and makes it produce
231## rules which invoke the C++ compiler to produce a libtool object file (.lo)
232## from each source file. Note that it is not necessary to list header files
233## which are already listed elsewhere in a _HEADERS variable assignment.
234libMolecuilderActions_@MOLECUILDER_API_VERSION@_la_SOURCES = ${ACTIONSSOURCE}
235
236## Instruct libtool to include ABI version information in the generated shared
237## library file (.so). The library ABI version is defined in configure.ac, so
238## that all version information is kept in one place.
239libMolecuilderActions_@MOLECUILDER_API_VERSION@_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
240
241## The generated configuration header is installed in its own subdirectory of
242## $(libdir). The reason for this is that the configuration information put
243## into this header file describes the target platform the installed library
244## has been built for. Thus the file must not be installed into a location
245## intended for architecture-independent files, as defined by the Filesystem
246## Hierarchy Standard (FHS).
247## The nodist_ prefix instructs Automake to not generate rules for including
248## the listed files in the distribution on 'make dist'. Files that are listed
249## in _HEADERS variables are normally included in the distribution, but the
250## configuration header file is generated at configure time and should not be
251## shipped with the source tarball.
252libMolecuilderActions_libincludedir = $(libdir)/molecuilder-$(MOLECUILDER_API_VERSION)/include
253nodist_libMolecuilderActions_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
254
255## Install the generated pkg-config file (.pc) into the expected location for
256## architecture-dependent package configuration information. Occasionally,
257## pkg-config files are also used for architecture-independent data packages,
258## in which case the correct install location would be $(datadir)/pkgconfig.
259pkgconfigdir = $(libdir)/pkgconfig
260pkgconfig_DATA = $(top_builddir)/molecuilder-$(MOLECUILDER_API_VERSION).pc
261
262unity.cpp:
263 echo "" > unity.cpp; \
264 list='$(ACTIONSSOURCE)'; for file in $$list; do \
265 echo "#include \"$(srcdir)/$$file\"" >> unity.cpp; \
266 done;
267
268MOSTLYCLEANFILES = unity.cpp
Note: See TracBrowser for help on using the repository browser.