source: src/Actions/Makefile.am@ aab177

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

FIX: Linking to non-system boost is working now.

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