# 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 = \ ParserCommonUnitTest \ ParserTremoloUnitTest 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 \ ../../RandomNumbers/libMolecuilderRandomNumbers.la \ ${CodePatterns_LIBS} \ $(BOOST_LIB) ALLLIBS = \ ../../UIElements/libMolecuilderUI.la \ ../../Actions/libMolecuilderActions.la \ ${PARSERLIBS} \ ../../libMolecuilder.la \ ${GSLLIBS} PARSERLIBS = ../../Parser/libMolecuilderParser.la UILIBS = ../../UIElements/libMolecuilderUI.la ParserCommonUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ParserCommonUnitTest.cpp \ ParserCommonUnitTest.hpp ParserCommonUnitTest_LDADD = ${ALLLIBS} ParserTremoloUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ParserTremoloUnitTest.cpp \ ParserTremoloUnitTest.hpp ParserTremoloUnitTest_LDADD = ${ALLLIBS} #AUTOMAKE_OPTIONS = parallel-tests