source: src/Actions/Makefile.am@ 92e5cb

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 Candidate_v1.7.0 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 92e5cb was be945c, checked in by Frederik Heber <heber@…>, 15 years ago

New DipoleAngularCorrelationAction that calculates angular correlation between dipoles.

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