[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 \
|
---|
[e45c1d] | 36 | ../Parameters/ParameterExceptions.hpp \
|
---|
[f10b0c] | 37 | ../Parameters/StreamOperators.hpp \
|
---|
[3c5ef5] | 38 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
| 39 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
[0ba371] | 40 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
[33d0af] | 41 | ../Parameters/Validators/Ops_Validator.hpp \
|
---|
| 42 | ../Parameters/Validators/Ops_Validator_impl.hpp \
|
---|
[a696f9] | 43 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
[3c5ef5] | 44 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
[0ba371] | 45 | ../Parameters/Validators/Validator.hpp \
|
---|
[3c5ef5] | 46 | ../Parameters/Value.hpp \
|
---|
| 47 | ../Parameters/Value_impl.hpp \
|
---|
[7dc60a] | 48 | ../Parameters/ValueAsString.hpp \
|
---|
[f10b0c] | 49 | ../Parameters/ValueInterface.hpp
|
---|
[dbb533] | 50 | ContinuousValueTest_LDADD = \
|
---|
[7d1b6a] | 51 | $(PARAMETERSLIBS) \
|
---|
| 52 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[c68409] | 53 |
|
---|
[dbb533] | 54 | ContinuousParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 55 | ../Parameters/unittests/ContinuousParameterTest.cpp \
|
---|
| 56 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
---|
[c68409] | 57 | ../Parameters/ContinuousValue.hpp \
|
---|
| 58 | ../Parameters/ContinuousValue_impl.hpp \
|
---|
| 59 | ../Parameters/ContinuousParameter.hpp \
|
---|
| 60 | ../Parameters/ContinuousParameter_impl.hpp \
|
---|
[3c5ef5] | 61 | ../Parameters/Parameter.hpp \
|
---|
| 62 | ../Parameters/Parameter_impl.hpp \
|
---|
[7dc60a] | 63 | ../Parameters/ParameterAsString.hpp \
|
---|
[9cd0d0] | 64 | ../Parameters/ParameterInterface.hpp \
|
---|
[3c5ef5] | 65 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
| 66 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
| 67 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
[33d0af] | 68 | ../Parameters/Validators/Ops_Validator.hpp \
|
---|
| 69 | ../Parameters/Validators/Ops_Validator_impl.hpp \
|
---|
[3c5ef5] | 70 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 71 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
| 72 | ../Parameters/Validators/Validator.hpp \
|
---|
| 73 | ../Parameters/Value.hpp \
|
---|
| 74 | ../Parameters/Value_impl.hpp \
|
---|
[7dc60a] | 75 | ../Parameters/ValueAsString.hpp \
|
---|
[c68409] | 76 | ../Parameters/ValueInterface.hpp
|
---|
[dbb533] | 77 | ContinuousParameterTest_LDADD = \
|
---|
[7d1b6a] | 78 | $(PARAMETERSLIBS) \
|
---|
| 79 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[c68409] | 80 |
|
---|
[dbb533] | 81 | DiscreteValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 82 | ../Parameters/unittests/DiscreteValueTest.cpp \
|
---|
| 83 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
---|
[e45c1d] | 84 | ../Parameters/ParameterExceptions.hpp \
|
---|
[916a2d] | 85 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
[9b5eb0] | 86 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
[0ba371] | 87 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
[33d0af] | 88 | ../Parameters/Validators/Ops_Validator.hpp \
|
---|
| 89 | ../Parameters/Validators/Ops_Validator_impl.hpp \
|
---|
[3c5ef5] | 90 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 91 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
[0ba371] | 92 | ../Parameters/Validators/Validator.hpp \
|
---|
[3c5ef5] | 93 | ../Parameters/Value.hpp \
|
---|
| 94 | ../Parameters/Value_impl.hpp \
|
---|
[7dc60a] | 95 | ../Parameters/ValueAsString.hpp \
|
---|
[c68409] | 96 | ../Parameters/ValueInterface.hpp
|
---|
[dbb533] | 97 | DiscreteValueTest_LDADD = \
|
---|
[3c5ef5] | 98 | $(PARAMETERSLIBS) \
|
---|
| 99 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[c68409] | 100 |
|
---|
[dbb533] | 101 | DiscreteParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 102 | ../Parameters/unittests/DiscreteParameterTest.cpp \
|
---|
| 103 | ../Parameters/unittests/DiscreteParameterTest.hpp \
|
---|
[c68409] | 104 | ../Parameters/DiscreteValue.hpp \
|
---|
| 105 | ../Parameters/DiscreteValue_impl.hpp \
|
---|
| 106 | ../Parameters/DiscreteParameter.hpp \
|
---|
| 107 | ../Parameters/DiscreteParameter_impl.hpp \
|
---|
[3c5ef5] | 108 | ../Parameters/Parameter.hpp \
|
---|
| 109 | ../Parameters/Parameter_impl.hpp \
|
---|
[7dc60a] | 110 | ../Parameters/ParameterAsString.hpp \
|
---|
[9cd0d0] | 111 | ../Parameters/ParameterInterface.hpp \
|
---|
[3c5ef5] | 112 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
| 113 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
| 114 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
[33d0af] | 115 | ../Parameters/Validators/Ops_Validator.hpp \
|
---|
| 116 | ../Parameters/Validators/Ops_Validator_impl.hpp \
|
---|
[3c5ef5] | 117 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 118 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
| 119 | ../Parameters/Validators/Validator.hpp \
|
---|
[4892c3] | 120 | ../Parameters/Value.hpp \
|
---|
| 121 | ../Parameters/Value_impl.hpp \
|
---|
[7dc60a] | 122 | ../Parameters/ValueAsString.hpp \
|
---|
[4892c3] | 123 | ../Parameters/ValueInterface.hpp
|
---|
[3c5ef5] | 124 | DiscreteParameterTest_LDADD = \
|
---|
[4892c3] | 125 | $(PARAMETERSLIBS) \
|
---|
| 126 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[33d0af] | 127 |
|
---|
| 128 | Ops_ValidatorTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 129 | ../Parameters/unittests/Ops_ValidatorTest.cpp \
|
---|
| 130 | ../Parameters/unittests/Ops_ValidatorTest.hpp \
|
---|
| 131 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
| 132 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
| 133 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
| 134 | ../Parameters/Validators/Ops_Validator.hpp \
|
---|
| 135 | ../Parameters/Validators/Ops_Validator_impl.hpp \
|
---|
| 136 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 137 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
| 138 | ../Parameters/Validators/Validator.hpp
|
---|
| 139 | Ops_ValidatorTest_LDADD = \
|
---|
| 140 | $(PARAMETERSLIBS) \
|
---|
| 141 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[c68409] | 142 |
|
---|
| 143 |
|
---|
| 144 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|