[efc3cb] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
[455573] | 4 | MOSTLYCLEANFILES =
|
---|
| 5 | lib_LTLIBRARIES =
|
---|
| 6 | noinst_LTLIBRARIES =
|
---|
[2d31e1] | 7 | pyexec_LTLIBRARIES =
|
---|
[aee2da] | 8 | BUILT_SOURCES =
|
---|
[bd8788] | 9 | bin_PROGRAMS =
|
---|
[fd4d5e] | 10 | EXTRA_DIST =
|
---|
[455573] | 11 |
|
---|
[748fc7] | 12 | # libMolecuilder.la requires the libraries listed below
|
---|
[004d5c] | 13 |
|
---|
[748fc7] | 14 | include Helpers/Makefile.am
|
---|
[455573] | 15 | include Shapes/Makefile.am
|
---|
[fec597] | 16 | include Tesselation/Makefile.am
|
---|
[748fc7] | 17 |
|
---|
| 18 | # then comes the library itself
|
---|
[5079a0] | 19 |
|
---|
[99689b] | 20 | AM_LDFLAGS = -ldl ${BOOST_LDFLAGS} ${CodePatterns_LDFLAGS} ${JobMarket_LDFLAGS}
|
---|
[3b35e7] | 21 | AM_CPPFLAGS = \
|
---|
| 22 | -I$(top_srcdir)/src/unittests \
|
---|
| 23 | -I$(top_srcdir)/src/Actions \
|
---|
| 24 | -I$(top_srcdir)/src/UIElements \
|
---|
[4ecb2d] | 25 | -I$(top_srcdir)/ThirdParty/LinearAlgebra/src \
|
---|
[3b35e7] | 26 | ${BOOST_CPPFLAGS} \
|
---|
| 27 | ${CodePatterns_CFLAGS}
|
---|
| 28 |
|
---|
[d5240d] | 29 |
|
---|
[129204] | 30 | BONDSOURCE = \
|
---|
| 31 | Bond/bond.cpp \
|
---|
[3f7587] | 32 | Bond/bond_observable.cpp \
|
---|
[af9be32] | 33 | Bond/BondInfo.cpp \
|
---|
[129204] | 34 | Bond/GraphEdge.cpp
|
---|
| 35 |
|
---|
| 36 | BONDHEADER = \
|
---|
| 37 | Bond/bond.hpp \
|
---|
[3f7587] | 38 | Bond/bond_observable.hpp \
|
---|
[af9be32] | 39 | Bond/BondInfo.hpp \
|
---|
[129204] | 40 | Bond/GraphEdge.hpp
|
---|
[efc3cb] | 41 |
|
---|
[c42e60] | 42 | DESCRIPTORSOURCE = \
|
---|
[786d28] | 43 | Descriptors/AtomDescriptor.cpp \
|
---|
[efc3cb] | 44 | Descriptors/AtomIdDescriptor.cpp \
|
---|
[a58c16] | 45 | Descriptors/AtomNameDescriptor.cpp \
|
---|
[b49568] | 46 | Descriptors/AtomOfMoleculeDescriptor.cpp \
|
---|
[c42e60] | 47 | Descriptors/AtomOfMoleculeSelectionDescriptor.cpp \
|
---|
[61c364] | 48 | Descriptors/AtomOrderDescriptor.cpp \
|
---|
[48dcbd] | 49 | Descriptors/AtomSelectionDescriptor.cpp \
|
---|
[6d858c] | 50 | Descriptors/AtomShapeDescriptor.cpp \
|
---|
[efc3cb] | 51 | Descriptors/AtomTypeDescriptor.cpp \
|
---|
[7afb77] | 52 | Descriptors/AtomsWithinDistanceOfDescriptor.cpp \
|
---|
[efc3cb] | 53 | Descriptors/MoleculeDescriptor.cpp \
|
---|
[6e7147] | 54 | Descriptors/MoleculeFormulaDescriptor.cpp \
|
---|
[e05826] | 55 | Descriptors/MoleculeIdDescriptor.cpp \
|
---|
[e6317b] | 56 | Descriptors/MoleculeNameDescriptor.cpp \
|
---|
[c42e60] | 57 | Descriptors/MoleculeOfAtomSelectionDescriptor.cpp \
|
---|
[92d756] | 58 | Descriptors/MoleculeOrderDescriptor.cpp \
|
---|
[cf0ca1] | 59 | Descriptors/MoleculePtrDescriptor.cpp \
|
---|
| 60 | Descriptors/MoleculeSelectionDescriptor.cpp
|
---|
[57adc7] | 61 |
|
---|
[75ac0c] | 62 |
|
---|
[c42e60] | 63 | DESCRIPTORHEADER = \
|
---|
[a58c16] | 64 | Descriptors/AtomDescriptor.hpp \
|
---|
[efc3cb] | 65 | Descriptors/AtomIdDescriptor.hpp \
|
---|
[a58c16] | 66 | Descriptors/AtomNameDescriptor.hpp \
|
---|
[b49568] | 67 | Descriptors/AtomOfMoleculeDescriptor.hpp \
|
---|
[c42e60] | 68 | Descriptors/AtomOfMoleculeSelectionDescriptor.hpp \
|
---|
[61c364] | 69 | Descriptors/AtomOrderDescriptor.hpp \
|
---|
[48dcbd] | 70 | Descriptors/AtomSelectionDescriptor.hpp \
|
---|
[6d858c] | 71 | Descriptors/AtomShapeDescriptor.hpp \
|
---|
[efc3cb] | 72 | Descriptors/AtomTypeDescriptor.hpp \
|
---|
[7afb77] | 73 | Descriptors/AtomsWithinDistanceOfDescriptor.hpp \
|
---|
[36f507] | 74 | Descriptors/DescriptorBase.hpp \
|
---|
[efc3cb] | 75 | Descriptors/MoleculeDescriptor.hpp \
|
---|
[6e7147] | 76 | Descriptors/MoleculeFormulaDescriptor.hpp \
|
---|
[e30ce8] | 77 | Descriptors/MoleculeIdDescriptor.hpp \
|
---|
[31b09e] | 78 | Descriptors/MoleculeNameDescriptor.hpp \
|
---|
[c42e60] | 79 | Descriptors/MoleculeOfAtomSelectionDescriptor.hpp \
|
---|
[92d756] | 80 | Descriptors/MoleculeOrderDescriptor.hpp \
|
---|
[cf0ca1] | 81 | Descriptors/MoleculePtrDescriptor.hpp \
|
---|
[36f507] | 82 | Descriptors/MoleculeSelectionDescriptor.hpp \
|
---|
[feb5d0] | 83 | Descriptors/SelectiveConstIterator.hpp \
|
---|
[36f507] | 84 | Descriptors/SelectiveIterator.hpp
|
---|
[c42e60] | 85 |
|
---|
| 86 | DESCRIPTORIMPLHEADER = \
|
---|
[a58c16] | 87 | Descriptors/AtomDescriptor_impl.hpp \
|
---|
[c42e60] | 88 | Descriptors/AtomIdDescriptor_impl.hpp \
|
---|
[a58c16] | 89 | Descriptors/AtomNameDescriptor_impl.hpp \
|
---|
[b49568] | 90 | Descriptors/AtomOfMoleculeDescriptor_impl.hpp \
|
---|
[c42e60] | 91 | Descriptors/AtomOfMoleculeSelectionDescriptor_impl.hpp \
|
---|
[61c364] | 92 | Descriptors/AtomOrderDescriptor_impl.hpp \
|
---|
[c42e60] | 93 | Descriptors/AtomSelectionDescriptor_impl.hpp \
|
---|
| 94 | Descriptors/AtomShapeDescriptor_impl.hpp \
|
---|
| 95 | Descriptors/AtomTypeDescriptor_impl.hpp \
|
---|
[7afb77] | 96 | Descriptors/AtomsWithinDistanceOfDescriptor_impl.hpp \
|
---|
[36f507] | 97 | Descriptors/DescriptorBase_impl.hpp \
|
---|
[c42e60] | 98 | Descriptors/MoleculeDescriptor_impl.hpp \
|
---|
| 99 | Descriptors/MoleculeFormulaDescriptor_impl.hpp \
|
---|
| 100 | Descriptors/MoleculeIdDescriptor_impl.hpp \
|
---|
| 101 | Descriptors/MoleculeNameDescriptor_impl.hpp \
|
---|
| 102 | Descriptors/MoleculeOfAtomSelectionDescriptor_impl.hpp \
|
---|
| 103 | Descriptors/MoleculeOrderDescriptor_impl.hpp \
|
---|
| 104 | Descriptors/MoleculePtrDescriptor_impl.hpp \
|
---|
[36f507] | 105 | Descriptors/MoleculeSelectionDescriptor_impl.hpp \
|
---|
[feb5d0] | 106 | Descriptors/SelectiveConstIterator_impl.hpp \
|
---|
[36f507] | 107 | Descriptors/SelectiveIterator_impl.hpp
|
---|
[3f9eba] | 108 |
|
---|
[9e23a3] | 109 | DYNAMICSSOURCE = \
|
---|
| 110 | Dynamics/MinimiseConstrainedPotential.cpp
|
---|
| 111 |
|
---|
| 112 | DYNAMICSHEADER = \
|
---|
[51cdfd] | 113 | Dynamics/AtomicForceManipulator.hpp \
|
---|
[1a48d2] | 114 | Dynamics/ForceAnnealing.hpp \
|
---|
[20943b] | 115 | Dynamics/LinearInterpolationBetweenSteps.hpp \
|
---|
[8009ce] | 116 | Dynamics/MinimiseConstrainedPotential.hpp \
|
---|
[435065] | 117 | Dynamics/OutputTemperature.hpp \
|
---|
| 118 | Dynamics/VerletForceIntegration.hpp
|
---|
[9e23a3] | 119 |
|
---|
[194649] | 120 | THERMOSTATSOURCE = \
|
---|
| 121 | Thermostats/Berendsen.cpp \
|
---|
| 122 | Thermostats/GaussianThermostat.cpp \
|
---|
| 123 | Thermostats/Langevin.cpp \
|
---|
| 124 | Thermostats/NoseHoover.cpp \
|
---|
| 125 | Thermostats/NoThermostat.cpp \
|
---|
| 126 | Thermostats/Thermostat.cpp \
|
---|
[ab26c3] | 127 | Thermostats/ThermoStatContainer.cpp \
|
---|
[194649] | 128 | Thermostats/Woodcock.cpp
|
---|
[d193a2] | 129 |
|
---|
[194649] | 130 | THERMOSTATHEADER = \
|
---|
| 131 | Thermostats/Berendsen.hpp \
|
---|
| 132 | Thermostats/GaussianThermostat.hpp \
|
---|
| 133 | Thermostats/Langevin.hpp \
|
---|
| 134 | Thermostats/NoseHoover.hpp \
|
---|
| 135 | Thermostats/NoThermostat.hpp \
|
---|
| 136 | Thermostats/Thermostat.hpp \
|
---|
[262ecc] | 137 | Thermostats/ThermoStatContainer.hpp \
|
---|
[194649] | 138 | Thermostats/Woodcock.hpp
|
---|
[d193a2] | 139 |
|
---|
[255971] | 140 | MOLECUILDERSOURCE = \
|
---|
[129204] | 141 | ${BONDSOURCE} \
|
---|
[efc3cb] | 142 | ${DESCRIPTORSOURCE} \
|
---|
[9e23a3] | 143 | ${DYNAMICSSOURCE} \
|
---|
[194649] | 144 | ${THERMOSTATSOURCE} \
|
---|
[87ec81] | 145 | Shapes/ShapeFactory.cpp \
|
---|
[5e6534] | 146 | AtomIdSet.cpp \
|
---|
[83c09a] | 147 | Box.cpp \
|
---|
[dd067a] | 148 | Box_BoundaryConditions.cpp \
|
---|
[efc3cb] | 149 | config.cpp \
|
---|
[6f43ab] | 150 | Formula.cpp \
|
---|
[d3abb1] | 151 | MoleculeLeafClass.cpp \
|
---|
[5d8f4f] | 152 | MoleculeObserver.cpp \
|
---|
[efc3cb] | 153 | molecule.cpp \
|
---|
| 154 | molecule_geometry.cpp \
|
---|
| 155 | molecule_graph.cpp \
|
---|
[112f90] | 156 | UIElements/UIFactory.cpp \
|
---|
[9cd9ab] | 157 | version.c \
|
---|
[f649de] | 158 | World.cpp \
|
---|
| 159 | WorldTime.cpp
|
---|
[5f612ee] | 160 |
|
---|
[255971] | 161 | MOLECUILDERHEADER = \
|
---|
[129204] | 162 | ${BONDHEADER} \
|
---|
[efc3cb] | 163 | ${DESCRIPTORHEADER} \
|
---|
[c42e60] | 164 | ${DESCRIPTORIMPLHEADER} \
|
---|
[9e23a3] | 165 | ${DYNAMICSHEADER} \
|
---|
[194649] | 166 | ${THERMOSTATHEADER} \
|
---|
[87ec81] | 167 | Shapes/ShapeFactory.hpp \
|
---|
[5e6534] | 168 | AtomIdSet.hpp \
|
---|
[83c09a] | 169 | Box.hpp \
|
---|
[dd067a] | 170 | Box_BoundaryConditions.hpp \
|
---|
[efc3cb] | 171 | config.hpp \
|
---|
[d4ba3f] | 172 | EntityObserver.hpp \
|
---|
| 173 | EntityObserver_impl.hpp \
|
---|
[6f43ab] | 174 | Formula.hpp \
|
---|
[3e4fb6] | 175 | IdPool.hpp \
|
---|
| 176 | IdPool_impl.hpp \
|
---|
[a292f6] | 177 | IdPool_policy.hpp \
|
---|
[d3abb1] | 178 | MoleculeLeafClass.hpp \
|
---|
[5d8f4f] | 179 | MoleculeObserver.hpp \
|
---|
[efc3cb] | 180 | molecule.hpp \
|
---|
[36f507] | 181 | types.hpp \
|
---|
[7d0a4e] | 182 | ThreadGuard.hpp \
|
---|
[112f90] | 183 | UIElements/UIFactory.hpp \
|
---|
[9cd9ab] | 184 | version.h \
|
---|
[6bb605] | 185 | World.hpp \
|
---|
[8544a33] | 186 | World_calculations.hpp \
|
---|
[f649de] | 187 | WorldTime.hpp
|
---|
[3027f8] | 188 |
|
---|
[748fc7] | 189 | lib_LTLIBRARIES += libMolecuilder.la
|
---|
[e5bf2b] | 190 | libMolecuilder_la_includedir = $(includedir)/MoleCuilder/
|
---|
[353326] | 191 | libMolecuilder_la_LDFLAGS = \
|
---|
| 192 | $(AM_LDFLAGS) \
|
---|
| 193 | $(BOOST_SYSTEM_LDFLAGS) \
|
---|
| 194 | $(BOOST_THREAD_LDFLAGS)
|
---|
| 195 | libMolecuilder_la_LIBADD = \
|
---|
[fec597] | 196 | libMolecuilderTesselation.la \
|
---|
[353326] | 197 | libMolecuilderShapes.la \
|
---|
[748fc7] | 198 | libMolecuilderHelpers.la \
|
---|
[4ecb2d] | 199 | $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
[353326] | 200 | ${CodePatterns_LIBS} \
|
---|
| 201 | $(BOOST_SERIALIZATION_LIBS) \
|
---|
| 202 | $(BOOST_PROGRAM_OPTIONS_LIBS) \
|
---|
| 203 | $(BOOST_FILESYSTEM_LIBS) \
|
---|
| 204 | $(BOOST_SYSTEM_LIBS) \
|
---|
| 205 | $(BOOST_THREAD_LIBS)
|
---|
[255971] | 206 |
|
---|
[e5bf2b] | 207 | nobase_libMolecuilder_la_include_HEADERS = ${MOLECUILDERHEADER}
|
---|
[255971] | 208 |
|
---|
| 209 | ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
|
---|
| 210 | ## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
|
---|
| 211 | ## will therefore be treated as if it were literally part of the target name,
|
---|
| 212 | ## and the variable name derived from that.
|
---|
| 213 | ## The file extension .cc is recognized by Automake, and makes it produce
|
---|
| 214 | ## rules which invoke the C++ compiler to produce a libtool object file (.lo)
|
---|
| 215 | ## from each source file. Note that it is not necessary to list header files
|
---|
| 216 | ## which are already listed elsewhere in a _HEADERS variable assignment.
|
---|
[9cd9ab] | 217 | libMolecuilder_la_SOURCES = ${MOLECUILDERSOURCE}
|
---|
[255971] | 218 |
|
---|
| 219 | ## Instruct libtool to include ABI version information in the generated shared
|
---|
| 220 | ## library file (.so). The library ABI version is defined in configure.ac, so
|
---|
| 221 | ## that all version information is kept in one place.
|
---|
[748fc7] | 222 | libMolecuilder_la_LDFLAGS += -version-info $(MOLECUILDER_SO_VERSION)
|
---|
[255971] | 223 |
|
---|
| 224 | ## The generated configuration header is installed in its own subdirectory of
|
---|
| 225 | ## $(libdir). The reason for this is that the configuration information put
|
---|
| 226 | ## into this header file describes the target platform the installed library
|
---|
| 227 | ## has been built for. Thus the file must not be installed into a location
|
---|
| 228 | ## intended for architecture-independent files, as defined by the Filesystem
|
---|
| 229 | ## Hierarchy Standard (FHS).
|
---|
| 230 | ## The nodist_ prefix instructs Automake to not generate rules for including
|
---|
| 231 | ## the listed files in the distribution on 'make dist'. Files that are listed
|
---|
| 232 | ## in _HEADERS variables are normally included in the distribution, but the
|
---|
| 233 | ## configuration header file is generated at configure time and should not be
|
---|
| 234 | ## shipped with the source tarball.
|
---|
[e5bf2b] | 235 | libMolecuilder_la_libincludedir = $(libdir)/MoleCuilder/include
|
---|
| 236 | nodist_libMolecuilder_la_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
|
---|
[255971] | 237 |
|
---|
| 238 | ## Install the generated pkg-config file (.pc) into the expected location for
|
---|
| 239 | ## architecture-dependent package configuration information. Occasionally,
|
---|
| 240 | ## pkg-config files are also used for architecture-independent data packages,
|
---|
| 241 | ## in which case the correct install location would be $(datadir)/pkgconfig.
|
---|
| 242 | pkgconfigdir = $(libdir)/pkgconfig
|
---|
[acbe1b] | 243 | pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
|
---|
[255971] | 244 |
|
---|
[748fc7] | 245 | # then we compile the remainder of all other libraries, especially
|
---|
| 246 | # libMolecuilderUI.la, which requires libMolecuilder.la on install
|
---|
| 247 |
|
---|
| 248 | include Actions/Makefile.am
|
---|
| 249 | include Analysis/Makefile.am
|
---|
| 250 | include Atom/Makefile.am
|
---|
| 251 | include Element/Makefile.am
|
---|
| 252 | include Filling/Makefile.am
|
---|
| 253 | include Fragmentation/Makefile.am
|
---|
| 254 | include Fragmentation/Automation/Makefile.am
|
---|
| 255 | include Fragmentation/Summation/Containers/Makefile.am
|
---|
| 256 | include Fragmentation/Summation/Converter/Makefile.am
|
---|
| 257 | include Fragmentation/Summation/Makefile.am
|
---|
| 258 | include Fragmentation/Summation/SetValues/Makefile.am
|
---|
| 259 | include FunctionApproximation/Makefile.am
|
---|
| 260 | include Graph/Makefile.am
|
---|
| 261 | include Jobs/Makefile.am
|
---|
| 262 |
|
---|
| 263 | if CONDPYTHON
|
---|
| 264 | include Python/Makefile.am
|
---|
| 265 | endif
|
---|
| 266 |
|
---|
| 267 | include LinkedCell/Makefile.am
|
---|
| 268 | include Parameters/Makefile.am
|
---|
| 269 | include Parser/Makefile.am
|
---|
| 270 | include Potentials/Makefile.am
|
---|
| 271 | include RandomNumbers/Makefile.am
|
---|
| 272 | include UIElements/Makefile.am
|
---|
[ef9df36] | 273 |
|
---|
[2e584e] | 274 | bin_PROGRAMS += molecuilder
|
---|
[796aa6] | 275 | EXTRA_PROGRAMS = unity
|
---|
[04488a] | 276 |
|
---|
[b1d8092] | 277 |
|
---|
[936a02] | 278 | extrastuffdir = $(datadir)/@PACKAGE@/data
|
---|
| 279 | databasedir = $(extrastuffdir)/databases
|
---|
| 280 | database_DATA = \
|
---|
| 281 | ${top_srcdir}/data/databases/*.db
|
---|
| 282 |
|
---|
| 283 | bondtabledir = $(extrastuffdir)/bondtables
|
---|
| 284 | bondtable_DATA = \
|
---|
| 285 | ${top_srcdir}/data/bondtables/*.dat
|
---|
[b1d8092] | 286 |
|
---|
[936a02] | 287 | moleculedir = $(extrastuffdir)/molecules
|
---|
| 288 | molecule_DATA = \
|
---|
| 289 | ${top_srcdir}/data/molecules/*.pdb
|
---|
[b1d8092] | 290 |
|
---|
[c015b3] | 291 | if CONDPYTHON
|
---|
[693a80] | 292 | pyexec_LTLIBRARIES += pyMoleCuilder.la
|
---|
[949953] | 293 | pyMoleCuilder_la_SOURCES = \
|
---|
| 294 | cleanUp.cpp \
|
---|
| 295 | cleanUp.hpp \
|
---|
[48d3c0] | 296 | Actions/Action_impl_python.hpp \
|
---|
| 297 | Actions/GlobalListOfActions.hpp \
|
---|
[cc6e5c] | 298 | Actions/ActionHistory.hpp
|
---|
[3b35e7] | 299 | pyMoleCuilder_la_CPPFLAGS = $(AM_CPPFLAGS) ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} $(JobMarket_CFLAGS) -I$(PYTHON_INCLUDE_DIR)
|
---|
[53ef0d4] | 300 | pyMoleCuilder_la_LDFLAGS = $(AM_LDFLAGS) -module -version-info $(MOLECUILDER_SO_VERSION) -shared $(BOOST_PYTHON_LDFLAGS)
|
---|
[693a80] | 301 | pyMoleCuilder_la_LIBADD = \
|
---|
[eb0d77] | 302 | libMolecuilderUI.la
|
---|
| 303 | pyMoleCuilder_la_LIBADD += \
|
---|
[785218] | 304 | $(BOOST_PYTHON_LIBS) \
|
---|
[693a80] | 305 | ${CodePatterns_LIBS} \
|
---|
| 306 | -l$(PYTHON_LIB)
|
---|
[c015b3] | 307 | endif
|
---|
[693a80] | 308 |
|
---|
[715085] | 309 |
|
---|
[7e3f11a] | 310 |
|
---|
[14de8e1] | 311 | molecuilder_CPPFLAGS = $(AM_CPPFLAGS)
|
---|
| 312 | #molecuilder_CPPFLAGS += -DNO_CACHING
|
---|
| 313 | molecuilder_LDFLAGS = \
|
---|
| 314 | $(AM_LDFLAGS) \
|
---|
| 315 | $(BOOST_FILESYSTEM_LDFLAGS) \
|
---|
| 316 | $(BOOST_PROGRAM_OPTIONS_LDFLAGS) \
|
---|
| 317 | $(BOOST_RANDOM_LDFLAGS) \
|
---|
| 318 | $(BOOST_SYSTEM_LDFLAGS) \
|
---|
| 319 | $(BOOST_THREAD_LDFLAGS)
|
---|
[949953] | 320 | molecuilder_SOURCES = \
|
---|
| 321 | builder.cpp \
|
---|
| 322 | builder_init.cpp \
|
---|
[748fc7] | 323 | builder_init.hpp \
|
---|
| 324 | Python/PythonScripting.hpp
|
---|
[952f38] | 325 | molecuilder_LDADD = \
|
---|
[748fc7] | 326 | libMolecuilder.la \
|
---|
[eb0d77] | 327 | libMolecuilderUI.la
|
---|
| 328 | molecuilder_LDADD += \
|
---|
[a0064e] | 329 | ${CodePatterns_LIBS} \
|
---|
[79de12] | 330 | $(BOOST_THREAD_LIBS) \
|
---|
| 331 | $(BOOST_PROGRAM_OPTIONS_LIBS) \
|
---|
| 332 | $(BOOST_RANDOM_LIBS) \
|
---|
[37ce5d] | 333 | $(BOOST_FILESYSTEM_LIBS) \
|
---|
| 334 | $(BOOST_SYSTEM_LIBS)
|
---|
[14de8e1] | 335 |
|
---|
| 336 | if CONDPYTHON
|
---|
| 337 | molecuilder_SOURCES += \
|
---|
| 338 | Actions/Action_impl_python.hpp \
|
---|
| 339 | Actions/GlobalListOfActions.hpp
|
---|
| 340 | molecuilder_CPPFLAGS += -I$(PYTHON_INCLUDE_DIR)
|
---|
| 341 | molecuilder_LDFLAGS += $(BOOST_PYTHON_LDFLAGS)
|
---|
| 342 | molecuilder_LDADD += \
|
---|
| 343 | $(BOOST_PYTHON_LIBS) \
|
---|
| 344 | ${CodePatterns_LIBS} \
|
---|
| 345 | -l$(PYTHON_LIB)
|
---|
| 346 | endif
|
---|
[b1d8092] | 347 |
|
---|
[4cf323d] | 348 | #Stuff for building the GUI using Qt
|
---|
[c015b3] | 349 | if CONDQTGUI
|
---|
| 350 | bin_PROGRAMS += molecuildergui
|
---|
[949953] | 351 | molecuildergui_SOURCES = \
|
---|
| 352 | builder.cpp \
|
---|
| 353 | builder_init.cpp \
|
---|
| 354 | builder_init.hpp \
|
---|
[7e3f11a] | 355 | Python/PythonScripting.hpp
|
---|
[14de8e1] | 356 | molecuildergui_CPPFLAGS = $(AM_CPPFLAGS) -DUSE_GUI_QT
|
---|
| 357 | molecuildergui_LDFLAGS = \
|
---|
| 358 | $(AM_LDFLAGS) \
|
---|
| 359 | $(BOOST_FILESYSTEM_LDFLAGS) \
|
---|
| 360 | $(BOOST_PROGRAM_OPTIONS_LDFLAGS) \
|
---|
| 361 | $(BOOST_SYSTEM_LDFLAGS) \
|
---|
| 362 | $(BOOST_THREAD_LDFLAGS)
|
---|
[952f38] | 363 | molecuildergui_LDADD = \
|
---|
[748fc7] | 364 | libMolecuilder.la \
|
---|
[455573] | 365 | libMolecuilderQtUI.la \
|
---|
[eb0d77] | 366 | libMolecuilderUI.la
|
---|
| 367 | molecuildergui_LDADD += \
|
---|
[a0064e] | 368 | ${CodePatterns_LIBS} \
|
---|
[79de12] | 369 | $(BOOST_THREAD_LIBS) \
|
---|
| 370 | $(BOOST_PROGRAM_OPTIONS_LIBS) \
|
---|
| 371 | $(BOOST_RANDOM_LIBS) \
|
---|
| 372 | $(BOOST_FILESYSTEM_LIBS) \
|
---|
[37ce5d] | 373 | $(BOOST_SYSTEM_LIBS) \
|
---|
[455573] | 374 | $(GUI_LIBS)
|
---|
[14de8e1] | 375 |
|
---|
| 376 | if CONDPYTHON
|
---|
| 377 | molecuildergui_SOURCES += \
|
---|
| 378 | Actions/Action_impl_python.hpp \
|
---|
| 379 | Actions/GlobalListOfActions.hpp
|
---|
| 380 | molecuildergui_CPPFLAGS += -I$(PYTHON_INCLUDE_DIR)
|
---|
| 381 | molecuildergui_LDFLAGS += $(BOOST_PYTHON_LDFLAGS)
|
---|
| 382 | molecuildergui_LDADD += \
|
---|
| 383 | $(BOOST_PYTHON_LIBS) \
|
---|
| 384 | ${CodePatterns_LIBS} \
|
---|
| 385 | -l$(PYTHON_LIB)
|
---|
| 386 | endif
|
---|
| 387 |
|
---|
[c015b3] | 388 | endif
|
---|
[b1d8092] | 389 |
|
---|
[004d5c] | 390 | if CONDJOBMARKET
|
---|
[cc5db5] | 391 | CONTROLLERSOURCE = \
|
---|
[fd4d5e] | 392 | controller_MPQCCommandJob.cpp \
|
---|
[7da5cd] | 393 | ControllerOptions_MPQCCommandJob.cpp
|
---|
[cc5db5] | 394 |
|
---|
| 395 | CONTROLLERHEADER = \
|
---|
[fd4d5e] | 396 | controller_MPQCCommandJob.hpp \
|
---|
[7da5cd] | 397 | ControllerOptions_MPQCCommandJob.hpp
|
---|
| 398 |
|
---|
[fd4d5e] | 399 |
|
---|
| 400 | noinst_LTLIBRARIES += libFragmentationAutomationController.la
|
---|
| 401 | libFragmentationAutomationController_la_includedir = $(includedir)/MoleCuilder/JobMarket
|
---|
| 402 | nobase_libFragmentationAutomationController_la_include_HEADERS = $(CONTROLLERHEADER)
|
---|
| 403 | libFragmentationAutomationController_la_SOURCES = $(CONTROLLERSOURCE)
|
---|
[004d5c] | 404 | libFragmentationAutomationController_la_CPPFLAGS = $(AM_CPPFLAGS) $(JobMarket_CFLAGS)
|
---|
[fd4d5e] | 405 | libFragmentationAutomationController_la_LIBADD = \
|
---|
[004d5c] | 406 | ${JobMarket_Controller_LIBS} \
|
---|
| 407 | $(JobMarket_LIBS)
|
---|
[cc5db5] | 408 |
|
---|
[fd4d5e] | 409 | bin_PROGRAMS += Controller PoolWorker Server
|
---|
| 410 |
|
---|
[7da5cd] | 411 | Controller_SOURCES = controller.cpp controller_AddOn_MPQCCommandJob.cpp
|
---|
[99689b] | 412 | Controller_LDFLAGS = $(AM_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LDFLAGS)
|
---|
[14de8e1] | 413 | Controller_CPPFLAGS = $(AM_CPPFLAGS) $(JobMarket_CFLAGS)
|
---|
[cc5db5] | 414 | Controller_LDADD = \
|
---|
[7da5cd] | 415 | libFragmentationAutomationController.la \
|
---|
[fe0355] | 416 | libMolecuilderFragmentation_getFromKeysetStub.la \
|
---|
[a10cc0] | 417 | libMolecuilderFragmentation.la \
|
---|
[049d4a] | 418 | libMolecuilderJobs.la \
|
---|
| 419 | libMolecuilderFragmentationSummation.la \
|
---|
[353326] | 420 | libMolecuilderFragmentation_KeysetsContainer.la \
|
---|
[a10cc0] | 421 | libMolecuilderHelpers.la \
|
---|
[004d5c] | 422 | $(JobMarket_Controller_LIBS) \
|
---|
[4ecb2d] | 423 | $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
[4d4ef8] | 424 | $(BOOST_SERIALIZATION_LIBS) \
|
---|
[7da5cd] | 425 | $(BOOST_PROGRAM_OPTIONS_LIBS) \
|
---|
| 426 | ${CodePatterns_LIBS}
|
---|
[fd4d5e] | 427 |
|
---|
[7da5cd] | 428 | PoolWorker_SOURCES = poolworker.cpp
|
---|
[99689b] | 429 | PoolWorker_LDFLAGS = $(AM_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LDFLAGS)
|
---|
[14de8e1] | 430 | PoolWorker_CPPFLAGS = $(AM_CPPFLAGS) $(JobMarket_CFLAGS)
|
---|
[cc5db5] | 431 | PoolWorker_LDADD = \
|
---|
[004d5c] | 432 | libMolecuilderJobs.la \
|
---|
[fbf143] | 433 | libMolecuilderFragmentationSummation.la \
|
---|
[004d5c] | 434 | ${JobMarket_PoolWorker_LIBS} \
|
---|
[4ecb2d] | 435 | $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
[4d4ef8] | 436 | $(BOOST_SERIALIZATION_LIBS) \
|
---|
| 437 | $(BOOST_PROGRAM_OPTIONS_LIBS) \
|
---|
[7da5cd] | 438 | ${CodePatterns_LIBS}
|
---|
[fd4d5e] | 439 |
|
---|
[7da5cd] | 440 | Server_SOURCES = Server.cpp
|
---|
[99689b] | 441 | Server_LDFLAGS = $(AM_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LDFLAGS)
|
---|
[14de8e1] | 442 | Server_CPPFLAGS = $(AM_CPPFLAGS) $(JobMarket_CFLAGS)
|
---|
[cc5db5] | 443 | Server_LDADD = \
|
---|
[004d5c] | 444 | libMolecuilderJobs.la \
|
---|
[fbf143] | 445 | libMolecuilderFragmentationSummation.la \
|
---|
[004d5c] | 446 | ${JobMarket_Server_LIBS} \
|
---|
[4ecb2d] | 447 | $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
[4d4ef8] | 448 | $(BOOST_SERIALIZATION_LIBS) \
|
---|
| 449 | $(BOOST_PROGRAM_OPTIONS_LIBS) \
|
---|
[7da5cd] | 450 | ${CodePatterns_LIBS}
|
---|
[004d5c] | 451 | endif
|
---|
[cc5db5] | 452 |
|
---|
[455573] | 453 | unity_SOURCES = unity.cpp
|
---|
[14de8e1] | 454 | unity_CPPFLAGS = $(AM_CPPFLAGS)
|
---|
[3b5fca] | 455 | unity_LDFLAGS = $(AM_LDFLAGS) $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_RANDOM_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS)
|
---|
[79de12] | 456 | unity_LDADD = \
|
---|
| 457 | ${CodePatterns_LIBS} \
|
---|
| 458 | $(BOOST_THREAD_LIBS) \
|
---|
| 459 | $(BOOST_PROGRAM_OPTIONS_LIBS) \
|
---|
| 460 | $(BOOST_RANDOM_LIBS) \
|
---|
[37ce5d] | 461 | $(BOOST_FILESYSTEM_LIBS) \
|
---|
| 462 | $(BOOST_SYSTEM_LIBS)
|
---|
[455573] | 463 |
|
---|
[65b6e0] | 464 |
|
---|
[a8eb4a] | 465 | FORCE:
|
---|
| 466 | $(srcdir)/.git-version: FORCE
|
---|
[f8be39] | 467 | @if (test -d $(top_srcdir)/.git && cd $(srcdir) \
|
---|
| 468 | && { git describe --dirty --always || git describe; } ) > .git-version-t 2>/dev/null \
|
---|
[a8eb4a] | 469 | && ! diff .git-version-t $(srcdir)/.git-version >/dev/null 2>&1; then \
|
---|
| 470 | mv -f .git-version-t $(srcdir)/.git-version; \
|
---|
| 471 | else \
|
---|
| 472 | rm -f .git-version-t; \
|
---|
| 473 | fi
|
---|
| 474 |
|
---|
[fd4d5e] | 475 | EXTRA_DIST += \
|
---|
[936a02] | 476 | $(srcdir)/.git-version \
|
---|
| 477 | $(bondtable_DATA) \
|
---|
| 478 | $(database_DATA) \
|
---|
| 479 | $(molecule_DATA)
|
---|
[a8eb4a] | 480 |
|
---|
| 481 | $(srcdir)/version.c: $(srcdir)/.git-version
|
---|
[5f8660a] | 482 | echo "const char *MOLECUILDERVERSION = \"$(PACKAGE_NAME) version "`cat $(srcdir)/.git-version`"\";" > $@
|
---|
[a8eb4a] | 483 |
|
---|
[b8d1aeb] | 484 |
|
---|
[d223d5] | 485 | unity.cpp: ${MOLECUILDERSOURCE} ${MOLECUILDERHEADER}
|
---|
| 486 | list='$(MOLECUILDERSOURCE)'; for file in $$list; do \
|
---|
[b0b086] | 487 | echo "#include \"$(srcdir)/$$file\"" >> unity.cpp; \
|
---|
[d223d5] | 488 | done; \
|
---|
| 489 | subdirs='$(SUBDIRS)';for directory in $$subdirs; do\
|
---|
| 490 | olddir=$$PWD;\
|
---|
| 491 | cd $$directory && make unity.cpp;\
|
---|
| 492 | cd $$olddir;\
|
---|
| 493 | echo "#include \"$$directory/unity.cpp\"" >> unity.cpp;\
|
---|
| 494 | done;\
|
---|
| 495 | echo "#include \"$(srcdir)/builder.cpp\"" >> unity.cpp;
|
---|
| 496 | echo "#include \"$(srcdir)/version.c\"" >> unity.cpp;
|
---|
| 497 |
|
---|
[455573] | 498 | MOSTLYCLEANFILES += unity.cpp
|
---|
[1ee3b8d] | 499 |
|
---|