[c68409] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 |
|
---|
[dbb533] | 5 | PARAMETERSTESTSSOURCES = \
|
---|
| 6 | ../Parameters/unittests/ContinuousValueTest.cpp \
|
---|
| 7 | ../Parameters/unittests/ContinuousParameterTest.cpp \
|
---|
| 8 | ../Parameters/unittests/DiscreteValueTest.cpp \
|
---|
[33d0af] | 9 | ../Parameters/unittests/DiscreteParameterTest.cpp \
|
---|
| 10 | ../Parameters/unittests/Ops_ValidatorTest.cpp
|
---|
[c68409] | 11 |
|
---|
[dbb533] | 12 | PARAMETERSTESTSHEADERS = \
|
---|
| 13 | ../Parameters/unittests/ContinuousValueTest.hpp \
|
---|
| 14 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
---|
| 15 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
---|
[33d0af] | 16 | ../Parameters/unittests/DiscreteParameterTest.hpp \
|
---|
| 17 | ../Parameters/unittests/Ops_ValidatorTest.hpp
|
---|
[c68409] | 18 |
|
---|
[dbb533] | 19 | PARAMETERSTESTS = \
|
---|
| 20 | ContinuousValueTest \
|
---|
| 21 | ContinuousParameterTest \
|
---|
| 22 | DiscreteValueTest \
|
---|
[33d0af] | 23 | DiscreteParameterTest \
|
---|
| 24 | Ops_ValidatorTest
|
---|
[c68409] | 25 |
|
---|
[dbb533] | 26 | TESTS += $(PARAMETERSTESTS)
|
---|
| 27 | check_PROGRAMS += $(PARAMETERSTESTS)
|
---|
| 28 | noinst_PROGRAMS += $(PARAMETERSTESTS)
|
---|
[c68409] | 29 |
|
---|
[dbb533] | 30 | PARAMETERSLIBS =
|
---|
[c68409] | 31 |
|
---|
| 32 |
|
---|
[dbb533] | 33 | ContinuousValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 34 | ../Parameters/unittests/ContinuousValueTest.cpp \
|
---|
| 35 | ../Parameters/unittests/ContinuousValueTest.hpp \
|
---|
[f10b0c] | 36 | ../Parameters/StreamOperators.hpp \
|
---|
[3c5ef5] | 37 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
| 38 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
[0ba371] | 39 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
[33d0af] | 40 | ../Parameters/Validators/Ops_Validator.hpp \
|
---|
| 41 | ../Parameters/Validators/Ops_Validator_impl.hpp \
|
---|
[a696f9] | 42 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
[3c5ef5] | 43 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
[0ba371] | 44 | ../Parameters/Validators/Validator.hpp \
|
---|
[3c5ef5] | 45 | ../Parameters/Value.hpp \
|
---|
| 46 | ../Parameters/Value_impl.hpp \
|
---|
[7dc60a] | 47 | ../Parameters/ValueAsString.hpp \
|
---|
[f10b0c] | 48 | ../Parameters/ValueInterface.hpp
|
---|
[dbb533] | 49 | ContinuousValueTest_LDADD = \
|
---|
[7d1b6a] | 50 | $(PARAMETERSLIBS) \
|
---|
| 51 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[c68409] | 52 |
|
---|
[dbb533] | 53 | ContinuousParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 54 | ../Parameters/unittests/ContinuousParameterTest.cpp \
|
---|
| 55 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
---|
[c68409] | 56 | ../Parameters/ContinuousValue.hpp \
|
---|
| 57 | ../Parameters/ContinuousValue_impl.hpp \
|
---|
| 58 | ../Parameters/ContinuousParameter.hpp \
|
---|
| 59 | ../Parameters/ContinuousParameter_impl.hpp \
|
---|
[3c5ef5] | 60 | ../Parameters/Parameter.hpp \
|
---|
| 61 | ../Parameters/Parameter_impl.hpp \
|
---|
[7dc60a] | 62 | ../Parameters/ParameterAsString.hpp \
|
---|
[9cd0d0] | 63 | ../Parameters/ParameterInterface.hpp \
|
---|
[3c5ef5] | 64 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
| 65 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
| 66 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
[33d0af] | 67 | ../Parameters/Validators/Ops_Validator.hpp \
|
---|
| 68 | ../Parameters/Validators/Ops_Validator_impl.hpp \
|
---|
[3c5ef5] | 69 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 70 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
| 71 | ../Parameters/Validators/Validator.hpp \
|
---|
| 72 | ../Parameters/Value.hpp \
|
---|
| 73 | ../Parameters/Value_impl.hpp \
|
---|
[7dc60a] | 74 | ../Parameters/ValueAsString.hpp \
|
---|
[c68409] | 75 | ../Parameters/ValueInterface.hpp
|
---|
[dbb533] | 76 | ContinuousParameterTest_LDADD = \
|
---|
[7d1b6a] | 77 | $(PARAMETERSLIBS) \
|
---|
| 78 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[c68409] | 79 |
|
---|
[dbb533] | 80 | DiscreteValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 81 | ../Parameters/unittests/DiscreteValueTest.cpp \
|
---|
| 82 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
---|
[916a2d] | 83 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
[9b5eb0] | 84 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
[0ba371] | 85 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
[33d0af] | 86 | ../Parameters/Validators/Ops_Validator.hpp \
|
---|
| 87 | ../Parameters/Validators/Ops_Validator_impl.hpp \
|
---|
[3c5ef5] | 88 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 89 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
[0ba371] | 90 | ../Parameters/Validators/Validator.hpp \
|
---|
[3c5ef5] | 91 | ../Parameters/Value.hpp \
|
---|
| 92 | ../Parameters/Value_impl.hpp \
|
---|
[7dc60a] | 93 | ../Parameters/ValueAsString.hpp \
|
---|
[c68409] | 94 | ../Parameters/ValueInterface.hpp
|
---|
[dbb533] | 95 | DiscreteValueTest_LDADD = \
|
---|
[3c5ef5] | 96 | $(PARAMETERSLIBS) \
|
---|
| 97 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[c68409] | 98 |
|
---|
[dbb533] | 99 | DiscreteParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 100 | ../Parameters/unittests/DiscreteParameterTest.cpp \
|
---|
| 101 | ../Parameters/unittests/DiscreteParameterTest.hpp \
|
---|
[c68409] | 102 | ../Parameters/DiscreteValue.hpp \
|
---|
| 103 | ../Parameters/DiscreteValue_impl.hpp \
|
---|
| 104 | ../Parameters/DiscreteParameter.hpp \
|
---|
| 105 | ../Parameters/DiscreteParameter_impl.hpp \
|
---|
[3c5ef5] | 106 | ../Parameters/Parameter.hpp \
|
---|
| 107 | ../Parameters/Parameter_impl.hpp \
|
---|
[7dc60a] | 108 | ../Parameters/ParameterAsString.hpp \
|
---|
[9cd0d0] | 109 | ../Parameters/ParameterInterface.hpp \
|
---|
[3c5ef5] | 110 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
| 111 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
| 112 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
[33d0af] | 113 | ../Parameters/Validators/Ops_Validator.hpp \
|
---|
| 114 | ../Parameters/Validators/Ops_Validator_impl.hpp \
|
---|
[3c5ef5] | 115 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 116 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
| 117 | ../Parameters/Validators/Validator.hpp \
|
---|
[4892c3] | 118 | ../Parameters/Value.hpp \
|
---|
| 119 | ../Parameters/Value_impl.hpp \
|
---|
[7dc60a] | 120 | ../Parameters/ValueAsString.hpp \
|
---|
[4892c3] | 121 | ../Parameters/ValueInterface.hpp
|
---|
[3c5ef5] | 122 | DiscreteParameterTest_LDADD = \
|
---|
[4892c3] | 123 | $(PARAMETERSLIBS) \
|
---|
| 124 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[33d0af] | 125 |
|
---|
| 126 | Ops_ValidatorTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 127 | ../Parameters/unittests/Ops_ValidatorTest.cpp \
|
---|
| 128 | ../Parameters/unittests/Ops_ValidatorTest.hpp \
|
---|
| 129 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
| 130 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
| 131 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
| 132 | ../Parameters/Validators/Ops_Validator.hpp \
|
---|
| 133 | ../Parameters/Validators/Ops_Validator_impl.hpp \
|
---|
| 134 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 135 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
| 136 | ../Parameters/Validators/Validator.hpp
|
---|
| 137 | Ops_ValidatorTest_LDADD = \
|
---|
| 138 | $(PARAMETERSLIBS) \
|
---|
| 139 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[c68409] | 140 |
|
---|
| 141 |
|
---|
| 142 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|