[3f9eba] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 | INCLUDES = -I$(top_srcdir)/src
|
---|
| 5 |
|
---|
| 6 | AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
|
---|
| 7 | AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
|
---|
| 8 |
|
---|
| 9 | TESTS = \
|
---|
[c9bc2b7] | 10 | RandomNumberDistributionFactoryUnitTest \
|
---|
| 11 | RandomNumberEngineFactoryUnitTest \
|
---|
| 12 | RandomNumberGeneratorFactoryUnitTest \
|
---|
| 13 | RandomNumberGeneratorUnitTest
|
---|
[3f9eba] | 14 |
|
---|
| 15 |
|
---|
| 16 | check_PROGRAMS = $(TESTS)
|
---|
| 17 | noinst_PROGRAMS = $(TESTS)
|
---|
| 18 |
|
---|
| 19 | BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
|
---|
| 20 | GSLLIBS = \
|
---|
| 21 | ${CodePatterns_LIBS} \
|
---|
| 22 | $(BOOST_LIB)
|
---|
| 23 |
|
---|
[c9bc2b7] | 24 | RandomNumberDistributionFactoryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 25 | RandomNumberDistributionFactoryUnitTest.cpp \
|
---|
[1ee3b8d] | 26 | RandomNumberDistributionFactoryUnitTest.hpp
|
---|
| 27 | RandomNumberDistributionFactoryUnitTest_LDADD = ${GSLLIBS} \
|
---|
| 28 | ../../RandomNumbers/libMolecuilderRandomNumbers.la
|
---|
[c9bc2b7] | 29 |
|
---|
| 30 | RandomNumberEngineFactoryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 31 | RandomNumberEngineFactoryUnitTest.cpp \
|
---|
[1ee3b8d] | 32 | RandomNumberEngineFactoryUnitTest.hpp
|
---|
| 33 | RandomNumberEngineFactoryUnitTest_LDADD = ${GSLLIBS} \
|
---|
| 34 | ../../RandomNumbers/libMolecuilderRandomNumbers.la
|
---|
[c9bc2b7] | 35 |
|
---|
[3f9eba] | 36 | RandomNumberGeneratorFactoryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 37 | RandomNumberGeneratorFactoryUnitTest.cpp \
|
---|
[1ee3b8d] | 38 | RandomNumberGeneratorFactoryUnitTest.hpp
|
---|
| 39 | RandomNumberGeneratorFactoryUnitTest_LDADD = ${GSLLIBS} \
|
---|
| 40 | ../../RandomNumbers/libMolecuilderRandomNumbers.la
|
---|
[3f9eba] | 41 |
|
---|
[c9bc2b7] | 42 | RandomNumberGeneratorUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 43 | RandomNumberGeneratorUnitTest.cpp \
|
---|
[1ee3b8d] | 44 | RandomNumberGeneratorUnitTest.hpp
|
---|
| 45 | RandomNumberGeneratorUnitTest_LDADD = ${GSLLIBS} \
|
---|
| 46 | ../../RandomNumbers/libMolecuilderRandomNumbers.la
|
---|
[c9bc2b7] | 47 |
|
---|
[3f9eba] | 48 |
|
---|
| 49 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|