| 1 | # PLEASE adhere to the alphabetical ordering in this Makefile! | 
|---|
| 2 | # Also indentation by a single tab | 
|---|
| 3 |  | 
|---|
| 4 | POTENTIALSTESTSSOURCES = \ | 
|---|
| 5 | ../Potentials/unittests/BindingModelUnitTest.cpp \ | 
|---|
| 6 | ../Potentials/unittests/CompoundPotentialUnitTest.cpp \ | 
|---|
| 7 | ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.cpp \ | 
|---|
| 8 | ../Potentials/unittests/SerializablePotentialUnitTest.cpp | 
|---|
| 9 |  | 
|---|
| 10 | POTENTIALSTESTSHEADERS = \ | 
|---|
| 11 | ../Potentials/unittests/BindingModelUnitTest.hpp \ | 
|---|
| 12 | ../Potentials/unittests/CompoundPotentialUnitTest.hpp \ | 
|---|
| 13 | ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.hpp \ | 
|---|
| 14 | ../Potentials/unittests/SerializablePotentialUnitTest.hpp | 
|---|
| 15 |  | 
|---|
| 16 | POTENTIALSTESTS = \ | 
|---|
| 17 | BindingModelUnitTest \ | 
|---|
| 18 | CompoundPotentialUnitTest \ | 
|---|
| 19 | PartialNucleiChargeFitterUnitTest \ | 
|---|
| 20 | SerializablePotentialUnitTest | 
|---|
| 21 |  | 
|---|
| 22 | TESTS += $(POTENTIALSTESTS) | 
|---|
| 23 | check_PROGRAMS += $(POTENTIALSTESTS) | 
|---|
| 24 | noinst_PROGRAMS += $(POTENTIALSTESTS) | 
|---|
| 25 |  | 
|---|
| 26 | POTENTIALSLIBS = \ | 
|---|
| 27 | libUnitTest.la \ | 
|---|
| 28 | ../libMolecuilder.la \ | 
|---|
| 29 | ../libMolecuilderPotentials.la \ | 
|---|
| 30 | $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ | 
|---|
| 31 | ${CodePatterns_LIBS} \ | 
|---|
| 32 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \ | 
|---|
| 33 | $(BOOST_LIB) | 
|---|
| 34 |  | 
|---|
| 35 | BindingModelUnitTest_SOURCES = \ | 
|---|
| 36 | ../Potentials/unittests/BindingModelUnitTest.cpp \ | 
|---|
| 37 | ../Potentials/unittests/BindingModelUnitTest.hpp | 
|---|
| 38 | BindingModelUnitTest_LDADD = \ | 
|---|
| 39 | ${POTENTIALSLIBS} \ | 
|---|
| 40 | ../libMolecuilderFragmentation.la \ | 
|---|
| 41 | ../libMolecuilderFragmentation_getFromKeysetStub.la | 
|---|
| 42 |  | 
|---|
| 43 | CompoundPotentialUnitTest_SOURCES = \ | 
|---|
| 44 | ../Potentials/unittests/CompoundPotentialUnitTest.cpp \ | 
|---|
| 45 | ../Potentials/unittests/CompoundPotentialUnitTest.hpp | 
|---|
| 46 | CompoundPotentialUnitTest_LDADD = \ | 
|---|
| 47 | libUnitTest.la \ | 
|---|
| 48 | ../libMolecuilderPotentials.la \ | 
|---|
| 49 | ../libMolecuilderFragmentation.la \ | 
|---|
| 50 | ../libMolecuilderFunctionApproximation.la \ | 
|---|
| 51 | ../libMolecuilderFragmentationSummation.la \ | 
|---|
| 52 | ../libMolecuilderFragmentation_getFromKeysetStub.la \ | 
|---|
| 53 | ../libMolecuilderRandomNumbers.la \ | 
|---|
| 54 | $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ | 
|---|
| 55 | ${CodePatterns_LIBS} \ | 
|---|
| 56 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \ | 
|---|
| 57 | $(BOOST_LIB) | 
|---|
| 58 |  | 
|---|
| 59 | PartialNucleiChargeFitterUnitTest_SOURCES = \ | 
|---|
| 60 | ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.cpp \ | 
|---|
| 61 | ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.hpp | 
|---|
| 62 | PartialNucleiChargeFitterUnitTest_LDADD = \ | 
|---|
| 63 | ../libMolecuilderFragmentationSummation.la \ | 
|---|
| 64 | ${POTENTIALSLIBS} | 
|---|
| 65 |  | 
|---|
| 66 | SerializablePotentialUnitTest_SOURCES = \ | 
|---|
| 67 | ../Potentials/unittests/SerializablePotentialUnitTest.cpp \ | 
|---|
| 68 | ../Potentials/unittests/SerializablePotentialUnitTest.hpp \ | 
|---|
| 69 | ../Potentials/unittests/stubs/SerializablePotentialMock.cpp \ | 
|---|
| 70 | ../Potentials/unittests/stubs/SerializablePotentialMock.hpp | 
|---|
| 71 | SerializablePotentialUnitTest_LDADD = ${POTENTIALSLIBS} | 
|---|
| 72 |  | 
|---|
| 73 | MOSTLYCLEANFILES += \ | 
|---|
| 74 | potential.csv \ | 
|---|
| 75 | residuum.csv \ | 
|---|
| 76 | solution.csv | 
|---|
| 77 |  | 
|---|
| 78 | #AUTOMAKE_OPTIONS = parallel-tests | 
|---|