source: src/Actions/Makefile.am@ 4c1230

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

Added select-molecule-by-order Action.

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