1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 | INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/LinearAlgebra/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 | ../../Shapes/libMolecuilderShapes.la \
|
---|
21 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
22 | ../../RandomNumbers/libMolecuilderRandomNumbers.la \
|
---|
23 | ${CodePatterns_LIBS} \
|
---|
24 | $(BOOST_LIB)
|
---|
25 | ALLLIBS = \
|
---|
26 | ../../UIElements/libMolecuilderUI.la \
|
---|
27 | ../../Actions/libMolecuilderActions.la \
|
---|
28 | ${PARSERLIBS} \
|
---|
29 | ../../libMolecuilder.la \
|
---|
30 | ${GSLLIBS}
|
---|
31 |
|
---|
32 | PARSERLIBS = ../../Parser/libMolecuilderParser.la
|
---|
33 | UILIBS = ../../UIElements/libMolecuilderUI.la
|
---|
34 |
|
---|
35 |
|
---|
36 | ActionRegistryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
37 | ActionRegistryUnitTest.cpp \
|
---|
38 | ActionRegistryUnitTest.hpp
|
---|
39 | ActionRegistryUnitTest_LDADD = ${ALLLIBS}
|
---|
40 |
|
---|
41 | ActionSequenceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
42 | ActionSequenceUnitTest.cpp \
|
---|
43 | ActionSequenceUnitTest.hpp
|
---|
44 | ActionSequenceUnitTest_LDADD = ${ALLLIBS}
|
---|
45 |
|
---|
46 | AtomsCalculationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
47 | AtomsCalculationUnitTest.cpp \
|
---|
48 | AtomsCalculationUnitTest.hpp
|
---|
49 | AtomsCalculationUnitTest_LDADD = ${ALLLIBS}
|
---|
50 |
|
---|
51 | ManipulateAtomsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
52 | ManipulateAtomsUnitTest.cpp \
|
---|
53 | ManipulateAtomsUnitTest.hpp
|
---|
54 | ManipulateAtomsUnitTest_LDADD = ${ALLLIBS}
|
---|
55 |
|
---|
56 |
|
---|
57 |
|
---|
58 |
|
---|
59 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|