source: src/Actions/Makefile.am@ 9df680

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

removed CPPUNIT_LIBS/FLAGS from most Makefile.am and LIBS/libs -> LIBADD.

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