[deddf6] | 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 |
|
---|
[a0064e] | 6 | AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
|
---|
| 7 | AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
|
---|
[deddf6] | 8 |
|
---|
| 9 | TESTS = \
|
---|
[f7c0c4] | 10 | ActionRegistryUnitTest \
|
---|
[3c8e8b] | 11 | ActionSequenceUnitTest \
|
---|
[efd61b] | 12 | AtomsCalculationUnitTest \
|
---|
| 13 | ManipulateAtomsUnitTest
|
---|
[deddf6] | 14 |
|
---|
| 15 | check_PROGRAMS = $(TESTS)
|
---|
| 16 | noinst_PROGRAMS = $(TESTS)
|
---|
| 17 |
|
---|
| 18 | BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
|
---|
| 19 | GSLLIBS = \
|
---|
| 20 | ../../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
|
---|
| 21 | ../../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
|
---|
[a0064e] | 22 | ${CodePatterns_LIBS} \
|
---|
[deddf6] | 23 | $(BOOST_LIB)
|
---|
| 24 | ALLLIBS = \
|
---|
| 25 | ../../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la \
|
---|
| 26 | ../../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
|
---|
| 27 | ${PARSERLIBS} \
|
---|
| 28 | ../../libMolecuilder-@MOLECUILDER_API_VERSION@.la \
|
---|
| 29 | ${GSLLIBS}
|
---|
| 30 |
|
---|
| 31 | PARSERLIBS = ../../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la
|
---|
| 32 | UILIBS = ../../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la
|
---|
| 33 |
|
---|
| 34 |
|
---|
| 35 | ActionRegistryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 36 | ActionRegistryUnitTest.cpp \
|
---|
| 37 | ActionRegistryUnitTest.hpp
|
---|
| 38 | ActionRegistryUnitTest_LDADD = ${ALLLIBS}
|
---|
| 39 |
|
---|
[f7c0c4] | 40 | ActionSequenceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 41 | ActionSequenceUnitTest.cpp \
|
---|
| 42 | ActionSequenceUnitTest.hpp
|
---|
[fff54f] | 43 | ActionSequenceUnitTest_LDADD = ${ALLLIBS}
|
---|
[f7c0c4] | 44 |
|
---|
[3c8e8b] | 45 | AtomsCalculationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 46 | AtomsCalculationUnitTest.cpp \
|
---|
| 47 | AtomsCalculationUnitTest.hpp
|
---|
| 48 | AtomsCalculationUnitTest_LDADD = ${ALLLIBS}
|
---|
| 49 |
|
---|
[efd61b] | 50 | ManipulateAtomsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 51 | ManipulateAtomsUnitTest.cpp \
|
---|
| 52 | ManipulateAtomsUnitTest.hpp
|
---|
| 53 | ManipulateAtomsUnitTest_LDADD = ${ALLLIBS}
|
---|
| 54 |
|
---|
| 55 |
|
---|
[f7c0c4] | 56 |
|
---|
[deddf6] | 57 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|