| 1 | INCLUDES = -I$(top_srcdir)/src
|
|---|
| 2 |
|
|---|
| 3 | AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
|
|---|
| 4 | AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
|
|---|
| 5 |
|
|---|
| 6 | TESTS = ActOnAllUnitTest AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest BondGraphUnitTest ListOfBondsUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest StackClassUnitTest VectorUnitTest
|
|---|
| 7 | check_PROGRAMS = $(TESTS)
|
|---|
| 8 | noinst_PROGRAMS = $(TESTS)
|
|---|
| 9 |
|
|---|
| 10 | ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp memoryallocator.hpp
|
|---|
| 11 |
|
|---|
| 12 | AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
|
|---|
| 13 | AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 14 |
|
|---|
| 15 | AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
|
|---|
| 16 | AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 17 |
|
|---|
| 18 | AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
|
|---|
| 19 | AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 20 |
|
|---|
| 21 | BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp
|
|---|
| 22 | BondGraphUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 23 |
|
|---|
| 24 | ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
|
|---|
| 25 | ListOfBondsUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 26 |
|
|---|
| 27 | MemoryAllocatorUnitTest_SOURCES = defs.hpp ../helpers.cpp ../helpers.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp memoryallocator.hpp memoryusageobserver.hpp verbose.hpp
|
|---|
| 28 |
|
|---|
| 29 | MemoryUsageObserverUnitTest_SOURCES = defs.hpp helpers.hpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp memoryusageobserver.hpp verbose.hpp
|
|---|
| 30 |
|
|---|
| 31 | StackClassUnitTest_SOURCES = memoryallocator.hpp stackclass.hpp stackclassunittest.cpp stackclassunittest.hpp
|
|---|
| 32 |
|
|---|
| 33 | VectorUnitTest_SOURCES = defs.hpp ../helpers.cpp helpers.hpp ../leastsquaremin.cpp leastsquaremin.hpp memoryallocator.hpp memoryusageobserver.hpp vectorunittest.cpp vectorunittest.hpp vector.hpp ../vector.cpp verbose.hpp ../verbose.cpp
|
|---|
| 34 |
|
|---|
| 35 |
|
|---|
| 36 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|