[8453b3] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 |
|
---|
| 5 | PARAMETERSOURCE = \
|
---|
[de2031] | 6 | Parameters/Validators/Specific/BoundaryConditionValidator.cpp \
|
---|
[361805] | 7 | Parameters/Validators/Specific/BoxLengthValidator.cpp \
|
---|
[b2e31a] | 8 | Parameters/Validators/Specific/BoxVectorValidator.cpp \
|
---|
[551074] | 9 | Parameters/Validators/Specific/RealSpaceMatrixInvertibleValidator.cpp \
|
---|
[b19405] | 10 | Parameters/Validators/Specific/RealSpaceMatrixSymmetricValidator.cpp \
|
---|
[180421] | 11 | Parameters/Validators/Specific/VectorPositiveComponentsValidator.cpp \
|
---|
| 12 | Parameters/Validators/Specific/VectorZeroOneComponentsValidator.cpp
|
---|
[8453b3] | 13 |
|
---|
| 14 | PARAMETERHEADER = \
|
---|
| 15 | Parameters/Parameter.hpp \
|
---|
| 16 | Parameters/Parameter_impl.hpp \
|
---|
| 17 | Parameters/ParameterAsString.hpp \
|
---|
| 18 | Parameters/ParameterInterface.hpp \
|
---|
| 19 | Parameters/Validators/DiscreteValidator.hpp \
|
---|
| 20 | Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
[23958d] | 21 | Parameters/Validators/DummyValidator.hpp \
|
---|
| 22 | Parameters/Validators/GenericValidators.hpp \
|
---|
[8453b3] | 23 | Parameters/Validators/Ops_Validator.hpp \
|
---|
| 24 | Parameters/Validators/Ops_Validator_impl.hpp \
|
---|
| 25 | Parameters/Validators/RangeValidator.hpp \
|
---|
| 26 | Parameters/Validators/RangeValidator_impl.hpp \
|
---|
| 27 | Parameters/Validators/STLVectorValidator.hpp \
|
---|
[23958d] | 28 | Parameters/Validators/UniqueValidator.hpp \
|
---|
[8453b3] | 29 | Parameters/Validators/Validator.hpp \
|
---|
[23958d] | 30 | Parameters/Validators/Specific/ActionNameValidator.hpp \
|
---|
| 31 | Parameters/Validators/Specific/AtomDataValidator.hpp \
|
---|
| 32 | Parameters/Validators/Specific/AtomIdValidator.hpp \
|
---|
[de2031] | 33 | Parameters/Validators/Specific/BoundaryConditionValidator.hpp \
|
---|
[8453b3] | 34 | Parameters/Validators/Specific/BoxLengthValidator.hpp \
|
---|
[23958d] | 35 | Parameters/Validators/Specific/BoxVectorValidator.hpp \
|
---|
[8453b3] | 36 | Parameters/Validators/Specific/ElementValidator.hpp \
|
---|
| 37 | Parameters/Validators/Specific/FilePresentValidator.hpp \
|
---|
[23958d] | 38 | Parameters/Validators/Specific/FileSuffixValidator.hpp \
|
---|
| 39 | Parameters/Validators/Specific/FormulaValidator.hpp \
|
---|
| 40 | Parameters/Validators/Specific/KeyValueValidator.hpp \
|
---|
| 41 | Parameters/Validators/Specific/MoleculeIdValidator.hpp \
|
---|
| 42 | Parameters/Validators/Specific/ParserFileValidator.hpp \
|
---|
| 43 | Parameters/Validators/Specific/ParserTypeValidator.hpp \
|
---|
| 44 | Parameters/Validators/Specific/RandomNumberValidators.hpp \
|
---|
| 45 | Parameters/Validators/Specific/RealSpaceMatrixInvertibleValidator.hpp \
|
---|
| 46 | Parameters/Validators/Specific/RealSpaceMatrixSymmetricValidator.hpp \
|
---|
| 47 | Parameters/Validators/Specific/RotationAngleValidator.hpp \
|
---|
| 48 | Parameters/Validators/Specific/TimeStepPresentValidator.hpp \
|
---|
| 49 | Parameters/Validators/Specific/VectorPositiveComponentsValidator.hpp \
|
---|
| 50 | Parameters/Validators/Specific/VectorZeroOneComponentsValidator.hpp \
|
---|
[8453b3] | 51 | Parameters/Value.hpp \
|
---|
| 52 | Parameters/Value_impl.hpp \
|
---|
| 53 | Parameters/ValueAsString.hpp \
|
---|
| 54 | Parameters/ValueInterface.hpp
|
---|
| 55 |
|
---|
| 56 | noinst_LTLIBRARIES += libMolecuilderParameters.la
|
---|
| 57 | libMolecuilderParameters_la_includedir = $(includedir)/MoleCuilder/Parameters/
|
---|
| 58 |
|
---|
| 59 | nobase_libMolecuilderParameters_la_include_HEADERS = ${PARAMETERHEADER}
|
---|
| 60 |
|
---|
| 61 | ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
|
---|
| 62 | ## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
|
---|
| 63 | ## will therefore be treated as if it were literally part of the target name,
|
---|
| 64 | ## and the variable name derived from that.
|
---|
| 65 | ## The file extension .cc is recognized by Automake, and makes it produce
|
---|
| 66 | ## rules which invoke the C++ compiler to produce a libtool object file (.lo)
|
---|
| 67 | ## from each source file. Note that it is not necessary to list header files
|
---|
| 68 | ## which are already listed elsewhere in a _HEADERS variable assignment.
|
---|
| 69 | libMolecuilderParameters_la_SOURCES = ${PARAMETERSOURCE}
|
---|
| 70 |
|
---|
| 71 | ## Instruct libtool to include ABI version information in the generated shared
|
---|
| 72 | ## library file (.so). The library ABI version is defined in configure.ac, so
|
---|
| 73 | ## that all version information is kept in one place.
|
---|
| 74 | #libMolecuilderParameters_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
|
---|
| 75 |
|
---|
| 76 | ## The generated configuration header is installed in its own subdirectory of
|
---|
| 77 | ## $(libdir). The reason for this is that the configuration information put
|
---|
| 78 | ## into this header file describes the target platform the installed library
|
---|
| 79 | ## has been built for. Thus the file must not be installed into a location
|
---|
| 80 | ## intended for architecture-independent files, as defined by the Filesystem
|
---|
| 81 | ## Hierarchy Standard (FHS).
|
---|
| 82 | ## The nodist_ prefix instructs Automake to not generate rules for including
|
---|
| 83 | ## the listed files in the distribution on 'make dist'. Files that are listed
|
---|
| 84 | ## in _HEADERS variables are normally included in the distribution, but the
|
---|
| 85 | ## configuration header file is generated at configure time and should not be
|
---|
| 86 | ## shipped with the source tarball.
|
---|
| 87 | #libMolecuilderParameters_libincludedir = $(libdir)/MoleCuilder/include
|
---|
| 88 | #nodist_libMolecuilderParameters_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
|
---|
| 89 |
|
---|
| 90 | ## Install the generated pkg-config file (.pc) into the expected location for
|
---|
| 91 | ## architecture-dependent package configuration information. Occasionally,
|
---|
| 92 | ## pkg-config files are also used for architecture-independent data packages,
|
---|
| 93 | ## in which case the correct install location would be $(datadir)/pkgconfig.
|
---|
| 94 | #pkgconfigdir = $(libdir)/pkgconfig
|
---|
| 95 | #pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
|
---|