| [6efcae] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
 | 
|---|
 | 2 | # Also indentation by a single tab
 | 
|---|
 | 3 | 
 | 
|---|
 | 4 | POTENTIALSTESTSSOURCES = \
 | 
|---|
| [154e88] | 5 |         ../Potentials/unittests/CompoundPotentialUnitTest.cpp \
 | 
|---|
| [58fcbe5] | 6 |         ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.cpp \
 | 
|---|
| [6efcae] | 7 |         ../Potentials/unittests/SerializablePotentialUnitTest.cpp
 | 
|---|
 | 8 | 
 | 
|---|
 | 9 | POTENTIALSTESTSHEADERS = \
 | 
|---|
| [154e88] | 10 |         ../Potentials/unittests/CompoundPotentialUnitTest.hpp \
 | 
|---|
| [58fcbe5] | 11 |         ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.hpp \
 | 
|---|
| [6efcae] | 12 |         ../Potentials/unittests/SerializablePotentialUnitTest.hpp
 | 
|---|
 | 13 | 
 | 
|---|
 | 14 | POTENTIALSTESTS = \
 | 
|---|
| [154e88] | 15 |         CompoundPotentialUnitTest \
 | 
|---|
| [58fcbe5] | 16 |         PartialNucleiChargeFitterUnitTest \
 | 
|---|
| [6efcae] | 17 |         SerializablePotentialUnitTest
 | 
|---|
 | 18 | 
 | 
|---|
 | 19 | TESTS += $(POTENTIALSTESTS)
 | 
|---|
 | 20 | check_PROGRAMS += $(POTENTIALSTESTS) 
 | 
|---|
 | 21 | noinst_PROGRAMS += $(POTENTIALSTESTS)
 | 
|---|
 | 22 | 
 | 
|---|
 | 23 | POTENTIALSLIBS = \
 | 
|---|
 | 24 |         ../libMolecuilderPotentials.la \
 | 
|---|
 | 25 |         $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
 | 
|---|
 | 26 |         ${CodePatterns_LIBS} \
 | 
|---|
| [58fcbe5] | 27 |         $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
 | 
|---|
| [6efcae] | 28 |         $(BOOST_LIB)
 | 
|---|
 | 29 | 
 | 
|---|
| [154e88] | 30 | CompoundPotentialUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 31 |         ../Potentials/unittests/CompoundPotentialUnitTest.cpp \
 | 
|---|
 | 32 |         ../Potentials/unittests/CompoundPotentialUnitTest.hpp
 | 
|---|
 | 33 | CompoundPotentialUnitTest_LDADD = \
 | 
|---|
 | 34 |         ../libMolecuilderPotentials.la \
 | 
|---|
 | 35 |         ../libMolecuilderFragmentation.la \
 | 
|---|
 | 36 |         ../libMolecuilderFragmentationSummation.la \
 | 
|---|
 | 37 |         ../libMolecuilderFunctionApproximation.la \
 | 
|---|
 | 38 |         ../libMolecuilderFragmentation_getFromKeysetStub.la \
 | 
|---|
 | 39 |         $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
 | 
|---|
 | 40 |         ${CodePatterns_LIBS} \
 | 
|---|
| [58fcbe5] | 41 |         $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
 | 
|---|
| [154e88] | 42 |         $(BOOST_LIB)
 | 
|---|
 | 43 | 
 | 
|---|
| [58fcbe5] | 44 | PartialNucleiChargeFitterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 45 |         ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.cpp \
 | 
|---|
 | 46 |         ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.hpp
 | 
|---|
 | 47 | PartialNucleiChargeFitterUnitTest_LDADD = \
 | 
|---|
 | 48 |         ../libMolecuilderFragmentationSummation.la \
 | 
|---|
 | 49 |         ${POTENTIALSLIBS}
 | 
|---|
 | 50 | 
 | 
|---|
| [6efcae] | 51 | SerializablePotentialUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 52 |         ../Potentials/unittests/SerializablePotentialUnitTest.cpp \
 | 
|---|
 | 53 |         ../Potentials/unittests/SerializablePotentialUnitTest.hpp \
 | 
|---|
 | 54 |         ../Potentials/unittests/stubs/SerializablePotentialMock.cpp \
 | 
|---|
 | 55 |         ../Potentials/unittests/stubs/SerializablePotentialMock.hpp
 | 
|---|
 | 56 | SerializablePotentialUnitTest_LDADD = ${POTENTIALSLIBS}
 | 
|---|
 | 57 | 
 | 
|---|
 | 58 | 
 | 
|---|
 | 59 | #AUTOMAKE_OPTIONS = parallel-tests
 | 
|---|