[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 = \
|
---|
[6d2207] | 20 | ../../Shapes/libMolecuilderShapes.la \
|
---|
[acbe1b] | 21 | ../../LinearAlgebra/libMolecuilderLinearAlgebra.la \
|
---|
| 22 | ../../Exceptions/libMolecuilderExceptions.la \
|
---|
[a0064e] | 23 | ${CodePatterns_LIBS} \
|
---|
[deddf6] | 24 | $(BOOST_LIB)
|
---|
| 25 | ALLLIBS = \
|
---|
[acbe1b] | 26 | ../../UIElements/libMolecuilderUI.la \
|
---|
| 27 | ../../Actions/libMolecuilderActions.la \
|
---|
[deddf6] | 28 | ${PARSERLIBS} \
|
---|
[acbe1b] | 29 | ../../libMolecuilder.la \
|
---|
[deddf6] | 30 | ${GSLLIBS}
|
---|
| 31 |
|
---|
[acbe1b] | 32 | PARSERLIBS = ../../Parser/libMolecuilderParser.la
|
---|
| 33 | UILIBS = ../../UIElements/libMolecuilderUI.la
|
---|
[deddf6] | 34 |
|
---|
| 35 |
|
---|
| 36 | ActionRegistryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 37 | ActionRegistryUnitTest.cpp \
|
---|
| 38 | ActionRegistryUnitTest.hpp
|
---|
| 39 | ActionRegistryUnitTest_LDADD = ${ALLLIBS}
|
---|
| 40 |
|
---|
[f7c0c4] | 41 | ActionSequenceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 42 | ActionSequenceUnitTest.cpp \
|
---|
| 43 | ActionSequenceUnitTest.hpp
|
---|
[fff54f] | 44 | ActionSequenceUnitTest_LDADD = ${ALLLIBS}
|
---|
[f7c0c4] | 45 |
|
---|
[3c8e8b] | 46 | AtomsCalculationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 47 | AtomsCalculationUnitTest.cpp \
|
---|
| 48 | AtomsCalculationUnitTest.hpp
|
---|
| 49 | AtomsCalculationUnitTest_LDADD = ${ALLLIBS}
|
---|
| 50 |
|
---|
[efd61b] | 51 | ManipulateAtomsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 52 | ManipulateAtomsUnitTest.cpp \
|
---|
| 53 | ManipulateAtomsUnitTest.hpp
|
---|
| 54 | ManipulateAtomsUnitTest_LDADD = ${ALLLIBS}
|
---|
| 55 |
|
---|
| 56 |
|
---|
[f7c0c4] | 57 |
|
---|
[6d2207] | 58 |
|
---|
[deddf6] | 59 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|