# PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab PARSERPARAMETERSTESTSSOURCES = \ ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \ ../Parser/Parameters/unittests/StringParameterUnitTest.cpp PARSERPARAMETERSTESTSHEADERS = \ ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp \ ../Parser/Parameters/unittests/StringParameterUnitTest.hpp PARSERPARAMETERSTESTS = \ ParameterStorageUnitTest \ StringParameterUnitTest TESTS += $(PARSERPARAMETERSTESTS) check_PROGRAMS += $(PARSERPARAMETERSTESTS) noinst_PROGRAMS += $(PARSERPARAMETERSTESTS) PARSERPARAMETERSLIBS = \ libUnitTest.la \ ../libMolecuilder.la \ $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ ${CodePatterns_LIBS} \ $(BOOST_THREAD_LDFLAGS) $(BOOST_THREAD_LIBS) ParameterStorageUnitTest_SOURCES = \ ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \ ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp ParameterStorageUnitTest_LDADD = \ ../libMolecuilderParser.la \ $(PARSERPARAMETERSLIBS) StringParameterUnitTest_SOURCES = \ ../Parser/Parameters/unittests/StringParameterUnitTest.cpp \ ../Parser/Parameters/unittests/StringParameterUnitTest.hpp StringParameterUnitTest_LDADD = \ ../libMolecuilderParameters.la \ $(PARSERPARAMETERSLIBS) #AUTOMAKE_OPTIONS = parallel-tests