| 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
|---|
| 2 | # Also indentation by a single tab
|
|---|
| 3 |
|
|---|
| 4 | # NOTE that all paths are relative to ./src (because we get included there!)
|
|---|
| 5 |
|
|---|
| 6 | TESTS += \
|
|---|
| 7 | ObservedContainerUnitTest \
|
|---|
| 8 | ObserverUnitTest
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 | check_PROGRAMS += $(TESTS)
|
|---|
| 12 | noinst_PROGRAMS += $(TESTS)
|
|---|
| 13 |
|
|---|
| 14 | ObserverUnitTest_SOURCES = unittests/UnitTestMain.cpp \
|
|---|
| 15 | Patterns/Observer/unittests/ObserverUnitTest.cpp \
|
|---|
| 16 | Patterns/Observer/unittests/ObserverUnitTest.hpp \
|
|---|
| 17 | Patterns/Observer/unittests/stubs/ObserverStub.cpp \
|
|---|
| 18 | Patterns/Observer/unittests/stubs/ObserverStub.hpp
|
|---|
| 19 | nodist_ObserverUnitTest_SOURCES = \
|
|---|
| 20 | Patterns/Observer/Channels.hpp \
|
|---|
| 21 | Patterns/Observer/defs.hpp \
|
|---|
| 22 | Patterns/Observer/Notification.hpp \
|
|---|
| 23 | Patterns/Observer/Observer.hpp \
|
|---|
| 24 | Patterns/Observer/ObserverLog.hpp \
|
|---|
| 25 | Patterns/Observer/ObserverContainer.hpp \
|
|---|
| 26 | Patterns/Observer/ObserverContainer_impl.hpp \
|
|---|
| 27 | Patterns/Observer/ObserverIterator.hpp
|
|---|
| 28 | ObserverUnitTest_LDADD = $(TESTLIBS)
|
|---|
| 29 |
|
|---|
| 30 | ObservedContainerUnitTest_SOURCES = unittests/UnitTestMain.cpp \
|
|---|
| 31 | Patterns/Observer/unittests/ObservedContainerUnitTest.cpp \
|
|---|
| 32 | Patterns/Observer/unittests/ObservedContainerUnitTest.hpp \
|
|---|
| 33 | Patterns/Observer/unittests/stubs/ObserverStub.cpp \
|
|---|
| 34 | Patterns/Observer/unittests/stubs/ObserverStub.hpp
|
|---|
| 35 | nodist_ObservedContainerUnitTest_SOURCES = \
|
|---|
| 36 | Patterns/Observer/ObserverContainer.hpp \
|
|---|
| 37 | Patterns/Observer/ObserverContainer_impl.hpp
|
|---|
| 38 | ObservedContainerUnitTest_LDADD = $(TESTLIBS)
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|