| [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 \
|
|---|
| 9 | ../Parameters/unittests/DiscreteParameterTest.cpp
|
|---|
| [c68409] | 10 |
|
|---|
| [dbb533] | 11 | PARAMETERSTESTSHEADERS = \
|
|---|
| 12 | ../Parameters/unittests/ContinuousValueTest.hpp \
|
|---|
| 13 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
|---|
| 14 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
|---|
| 15 | ../Parameters/unittests/DiscreteParameterTest.hpp
|
|---|
| [c68409] | 16 |
|
|---|
| [dbb533] | 17 | PARAMETERSTESTS = \
|
|---|
| 18 | ContinuousValueTest \
|
|---|
| 19 | ContinuousParameterTest \
|
|---|
| 20 | DiscreteValueTest \
|
|---|
| 21 | DiscreteParameterTest
|
|---|
| [c68409] | 22 |
|
|---|
| [dbb533] | 23 | TESTS += $(PARAMETERSTESTS)
|
|---|
| 24 | check_PROGRAMS += $(PARAMETERSTESTS)
|
|---|
| 25 | noinst_PROGRAMS += $(PARAMETERSTESTS)
|
|---|
| [c68409] | 26 |
|
|---|
| [dbb533] | 27 | PARAMETERSLIBS =
|
|---|
| [c68409] | 28 |
|
|---|
| 29 |
|
|---|
| [dbb533] | 30 | ContinuousValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 31 | ../Parameters/unittests/ContinuousValueTest.cpp \
|
|---|
| 32 | ../Parameters/unittests/ContinuousValueTest.hpp \
|
|---|
| [c68409] | 33 | ../Parameters/ContinuousValue.hpp \
|
|---|
| 34 | ../Parameters/ContinuousValue_impl.hpp \
|
|---|
| [7d1b6a] | 35 | ../Parameters/Range.hpp \
|
|---|
| [c68409] | 36 | ../Parameters/ValueInterface.hpp
|
|---|
| [dbb533] | 37 | ContinuousValueTest_LDADD = \
|
|---|
| [7d1b6a] | 38 | $(PARAMETERSLIBS) \
|
|---|
| 39 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
|---|
| [c68409] | 40 |
|
|---|
| [dbb533] | 41 | ContinuousParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 42 | ../Parameters/unittests/ContinuousParameterTest.cpp \
|
|---|
| 43 | ../Parameters/unittests/ContinuousParameterTest.hpp \
|
|---|
| [c68409] | 44 | ../Parameters/ContinuousValue.hpp \
|
|---|
| 45 | ../Parameters/ContinuousValue_impl.hpp \
|
|---|
| 46 | ../Parameters/ContinuousParameter.hpp \
|
|---|
| 47 | ../Parameters/ContinuousParameter_impl.hpp \
|
|---|
| 48 | ../Parameters/Parameter.hpp \
|
|---|
| [85d89b] | 49 | ../Parameters/Range.hpp \
|
|---|
| [c68409] | 50 | ../Parameters/ValueInterface.hpp
|
|---|
| [dbb533] | 51 | ContinuousParameterTest_LDADD = \
|
|---|
| [7d1b6a] | 52 | $(PARAMETERSLIBS) \
|
|---|
| 53 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
|
|---|
| [c68409] | 54 |
|
|---|
| [dbb533] | 55 | DiscreteValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 56 | ../Parameters/unittests/DiscreteValueTest.cpp \
|
|---|
| 57 | ../Parameters/unittests/DiscreteValueTest.hpp \
|
|---|
| [c68409] | 58 | ../Parameters/DiscreteValue.hpp \
|
|---|
| 59 | ../Parameters/DiscreteValue_impl.hpp \
|
|---|
| 60 | ../Parameters/ValueInterface.hpp
|
|---|
| [dbb533] | 61 | DiscreteValueTest_LDADD = \
|
|---|
| 62 | $(PARAMETERSLIBS)
|
|---|
| [c68409] | 63 |
|
|---|
| [dbb533] | 64 | DiscreteParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 65 | ../Parameters/unittests/DiscreteParameterTest.cpp \
|
|---|
| 66 | ../Parameters/unittests/DiscreteParameterTest.hpp \
|
|---|
| [c68409] | 67 | ../Parameters/DiscreteValue.hpp \
|
|---|
| 68 | ../Parameters/DiscreteValue_impl.hpp \
|
|---|
| 69 | ../Parameters/DiscreteParameter.hpp \
|
|---|
| 70 | ../Parameters/DiscreteParameter_impl.hpp \
|
|---|
| 71 | ../Parameters/Parameter.hpp \
|
|---|
| 72 | ../Parameters/ValueInterface.hpp
|
|---|
| [dbb533] | 73 | DiscreteParameterTest_LDADD = \
|
|---|
| 74 | $(PARAMETERSLIBS)
|
|---|
| [c68409] | 75 |
|
|---|
| 76 |
|
|---|
| 77 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|