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