| 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 ListOfBondsUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest StackClassUnitTest VectorUnitTest
|
|---|
| 7 | check_PROGRAMS = $(TESTS)
|
|---|
| 8 | noinst_PROGRAMS = $(TESTS)
|
|---|
| 9 |
|
|---|
| 10 | ActOnAllUnitTest_SOURCES = ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp memoryallocator.hpp
|
|---|
| 11 | ActOnAllUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 12 |
|
|---|
| 13 | AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
|
|---|
| 14 | AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 15 |
|
|---|
| 16 | AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
|
|---|
| 17 | AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 18 |
|
|---|
| 19 | AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
|
|---|
| 20 | AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 21 |
|
|---|
| 22 | ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
|
|---|
| 23 | ListOfBondsUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 24 |
|
|---|
| 25 | MemoryAllocatorUnitTest_SOURCES = defs.hpp helpers.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp memoryallocator.hpp memoryusageobserver.hpp verbose.hpp
|
|---|
| 26 | MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 27 |
|
|---|
| 28 | MemoryUsageObserverUnitTest_SOURCES = defs.hpp helpers.hpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp memoryusageobserver.hpp verbose.hpp
|
|---|
| 29 | MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 30 |
|
|---|
| 31 | StackClassUnitTest_SOURCES = stackclass.hpp stackclassunittest.cpp stackclassunittest.hpp
|
|---|
| 32 | StackClassUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 33 |
|
|---|
| 34 | VectorUnitTest_SOURCES = defs.hpp helpers.hpp leastsquaremin.hpp memoryallocator.hpp memoryusageobserver.hpp vectorunittest.cpp vectorunittest.hpp vector.hpp verbose.hpp
|
|---|
| 35 | VectorUnitTest_LDADD = ../libmolecuilder.a
|
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|