| 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 = $(CPPUNIT_LIBS) -ldl
|
|---|
| 7 | AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
|
|---|
| 8 | AM_CPPFLAGS = ${BOOST_CPPFLAGS}
|
|---|
| 9 |
|
|---|
| 10 | TESTS = \
|
|---|
| 11 | ActionRegistryUnitTest \
|
|---|
| 12 | ActionSequenceUnitTest \
|
|---|
| 13 | AtomsCalculationUnitTest \
|
|---|
| 14 | ManipulateAtomsUnitTest
|
|---|
| 15 |
|
|---|
| 16 | check_PROGRAMS = $(TESTS)
|
|---|
| 17 | noinst_PROGRAMS = $(TESTS)
|
|---|
| 18 |
|
|---|
| 19 | BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
|
|---|
| 20 | GSLLIBS = \
|
|---|
| 21 | ../../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
|
|---|
| 22 | ../../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
|
|---|
| 23 | ../../Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
|
|---|
| 24 | $(BOOST_LIB)
|
|---|
| 25 | ALLLIBS = \
|
|---|
| 26 | ../../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la \
|
|---|
| 27 | ../../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
|
|---|
| 28 | ${PARSERLIBS} \
|
|---|
| 29 | ../../libMolecuilder-@MOLECUILDER_API_VERSION@.la \
|
|---|
| 30 | ${GSLLIBS}
|
|---|
| 31 |
|
|---|
| 32 | PARSERLIBS = ../../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la
|
|---|
| 33 | UILIBS = ../../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.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 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|