[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 \
|
---|
[a696f9] | 36 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
[3c5ef5] | 37 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
[345883] | 38 | ../Parameters/Value_impl.hpp \
|
---|
[3c5ef5] | 39 | ../Parameters/Value.hpp \
|
---|
| 40 | ../Parameters/Value_impl.hpp \
|
---|
[7dc60a] | 41 | ../Parameters/ValueAsString.hpp \
|
---|
[f10b0c] | 42 | ../Parameters/ValueInterface.hpp
|
---|
[dbb533] | 43 | ContinuousValueTest_LDADD = \
|
---|
[7d1b6a] | 44 | $(PARAMETERSLIBS) \
|
---|
| 45 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[c68409] | 46 |
|
---|
[dbb533] | 47 | ContinuousParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 48 | ../Parameters/unittests/ContinuousParameterTest.cpp \
|
---|
| 49 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
---|
[345883] | 50 | ../Parameters/ParameterExceptions.hpp \
|
---|
[3c5ef5] | 51 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 52 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
| 53 | ../Parameters/Validators/Validator.hpp \
|
---|
[345883] | 54 | ../Parameters/Parameter.hpp \
|
---|
| 55 | ../Parameters/Parameter_impl.hpp \
|
---|
| 56 | ../Parameters/ParameterAsString.hpp \
|
---|
| 57 | ../Parameters/ParameterInterface.hpp
|
---|
[dbb533] | 58 | ContinuousParameterTest_LDADD = \
|
---|
[7d1b6a] | 59 | $(PARAMETERSLIBS) \
|
---|
| 60 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[c68409] | 61 |
|
---|
[dbb533] | 62 | DiscreteValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 63 | ../Parameters/unittests/DiscreteValueTest.cpp \
|
---|
| 64 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
---|
[e45c1d] | 65 | ../Parameters/ParameterExceptions.hpp \
|
---|
[916a2d] | 66 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
[9b5eb0] | 67 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
[0ba371] | 68 | ../Parameters/Validators/Validator.hpp \
|
---|
[3c5ef5] | 69 | ../Parameters/Value.hpp \
|
---|
| 70 | ../Parameters/Value_impl.hpp \
|
---|
[7dc60a] | 71 | ../Parameters/ValueAsString.hpp \
|
---|
[c68409] | 72 | ../Parameters/ValueInterface.hpp
|
---|
[dbb533] | 73 | DiscreteValueTest_LDADD = \
|
---|
[3c5ef5] | 74 | $(PARAMETERSLIBS) \
|
---|
| 75 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[c68409] | 76 |
|
---|
[dbb533] | 77 | DiscreteParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 78 | ../Parameters/unittests/DiscreteParameterTest.cpp \
|
---|
| 79 | ../Parameters/unittests/DiscreteParameterTest.hpp \
|
---|
[3c5ef5] | 80 | ../Parameters/Parameter.hpp \
|
---|
| 81 | ../Parameters/Parameter_impl.hpp \
|
---|
[7dc60a] | 82 | ../Parameters/ParameterAsString.hpp \
|
---|
[9cd0d0] | 83 | ../Parameters/ParameterInterface.hpp \
|
---|
[3c5ef5] | 84 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
| 85 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
| 86 | ../Parameters/Validators/Validator.hpp \
|
---|
[4892c3] | 87 | ../Parameters/Value.hpp \
|
---|
| 88 | ../Parameters/Value_impl.hpp \
|
---|
[7dc60a] | 89 | ../Parameters/ValueAsString.hpp \
|
---|
[4892c3] | 90 | ../Parameters/ValueInterface.hpp
|
---|
[3c5ef5] | 91 | DiscreteParameterTest_LDADD = \
|
---|
[4892c3] | 92 | $(PARAMETERSLIBS) \
|
---|
| 93 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[33d0af] | 94 |
|
---|
| 95 | Ops_ValidatorTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 96 | ../Parameters/unittests/Ops_ValidatorTest.cpp \
|
---|
| 97 | ../Parameters/unittests/Ops_ValidatorTest.hpp \
|
---|
| 98 | ../Parameters/Validators/DiscreteValidator.hpp \
|
---|
| 99 | ../Parameters/Validators/DiscreteValidator_impl.hpp \
|
---|
| 100 | ../Parameters/Validators/DummyValidator.hpp \
|
---|
| 101 | ../Parameters/Validators/Ops_Validator.hpp \
|
---|
| 102 | ../Parameters/Validators/Ops_Validator_impl.hpp \
|
---|
| 103 | ../Parameters/Validators/RangeValidator.hpp \
|
---|
| 104 | ../Parameters/Validators/RangeValidator_impl.hpp \
|
---|
| 105 | ../Parameters/Validators/Validator.hpp
|
---|
| 106 | Ops_ValidatorTest_LDADD = \
|
---|
| 107 | $(PARAMETERSLIBS) \
|
---|
| 108 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
---|
[c68409] | 109 |
|
---|
| 110 |
|
---|
| 111 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|