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 = \
|
---|
10 | ActionRegistryUnitTest \
|
---|
11 | ActionSequenceUnitTest \
|
---|
12 | AtomsCalculationUnitTest \
|
---|
13 | ManipulateAtomsUnitTest
|
---|
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 \
|
---|
22 | ${CodePatterns_LIBS} \
|
---|
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 |
|
---|
40 | ActionSequenceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
41 | ActionSequenceUnitTest.cpp \
|
---|
42 | ActionSequenceUnitTest.hpp
|
---|
43 | ActionSequenceUnitTest_LDADD = ${ALLLIBS}
|
---|
44 |
|
---|
45 | AtomsCalculationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
46 | AtomsCalculationUnitTest.cpp \
|
---|
47 | AtomsCalculationUnitTest.hpp
|
---|
48 | AtomsCalculationUnitTest_LDADD = ${ALLLIBS}
|
---|
49 |
|
---|
50 | ManipulateAtomsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
51 | ManipulateAtomsUnitTest.cpp \
|
---|
52 | ManipulateAtomsUnitTest.hpp
|
---|
53 | ManipulateAtomsUnitTest_LDADD = ${ALLLIBS}
|
---|
54 |
|
---|
55 |
|
---|
56 |
|
---|
57 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|