source: src/Actions/Makefile.am@ e3e6e2

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 e3e6e2 was 9ee38b, checked in by Frederik Heber <heber@…>, 15 years ago

Extended macro framework.

Extensions:

  • all central definitions reside in .def files
    • This if file is necessary because we need the definitions at two places: hpp and cpp
    • And as we always use the same define names, we have to undefine them at the end of both (otherwise we get compiler warnings and are prone to dumb mistakes of forgotten defines seeming present)
  • the .hpp is just a very tiny header, that should be possible to batch- construct inside Makefile as well
  • .cpp includes some Action_...hpp files and implements the function

For later (i.e. when ActionRegistry becomes prototype copier)

  • instead of waiting for clone(), for now we simply call the prototype.
  • in the action command we must not yet prefix paramreferences with "params."

Changes:

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