# PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab INCLUDES = -I$(top_srcdir)/src AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS} TESTS = \ ActionRegistryUnitTest \ ActionSequenceUnitTest \ AtomsCalculationUnitTest \ ManipulateAtomsUnitTest check_PROGRAMS = $(TESTS) noinst_PROGRAMS = $(TESTS) BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB) GSLLIBS = \ ../../Shapes/libMolecuilderShapes.la \ ../../LinearAlgebra/libMolecuilderLinearAlgebra.la \ ../../Exceptions/libMolecuilderExceptions.la \ ${CodePatterns_LIBS} \ $(BOOST_LIB) ALLLIBS = \ ../../UIElements/libMolecuilderUI.la \ ../../Actions/libMolecuilderActions.la \ ${PARSERLIBS} \ ../../libMolecuilder.la \ ${GSLLIBS} PARSERLIBS = ../../Parser/libMolecuilderParser.la UILIBS = ../../UIElements/libMolecuilderUI.la ActionRegistryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ActionRegistryUnitTest.cpp \ ActionRegistryUnitTest.hpp ActionRegistryUnitTest_LDADD = ${ALLLIBS} ActionSequenceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ActionSequenceUnitTest.cpp \ ActionSequenceUnitTest.hpp ActionSequenceUnitTest_LDADD = ${ALLLIBS} AtomsCalculationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ AtomsCalculationUnitTest.cpp \ AtomsCalculationUnitTest.hpp AtomsCalculationUnitTest_LDADD = ${ALLLIBS} ManipulateAtomsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ManipulateAtomsUnitTest.cpp \ ManipulateAtomsUnitTest.hpp ManipulateAtomsUnitTest_LDADD = ${ALLLIBS} #AUTOMAKE_OPTIONS = parallel-tests