source: molecuilder/src/unittests/Makefile.am@ 6d7651

Last change on this file since 6d7651 was 2e6aa1, checked in by Frederik Heber <heber@…>, 16 years ago

..._CPPFLAGS and ..._LDFLAGS in unittests/Makefile.am put into global AM_... statements.

  • Property mode set to 100644
File size: 1.9 KB
Line 
1INCLUDES = -I$(top_srcdir)/src
2
3AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
4AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
5
6TESTS = ActOnAllUnitTest AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest ListOfBondsUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest VectorUnitTest
7check_PROGRAMS = $(TESTS)
8noinst_PROGRAMS = $(TESTS)
9
10ActOnAllUnitTest_SOURCES = ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp memoryallocator.hpp
11ActOnAllUnitTest_LDADD = ../libmolecuilder.a
12
13AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
14AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a
15
16AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
17AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a
18
19AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
20AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a
21
22ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
23ListOfBondsUnitTest_LDADD = ../libmolecuilder.a
24
25VectorUnitTest_SOURCES = defs.hpp helpers.hpp leastsquaremin.hpp memoryallocator.hpp memoryusageobserver.hpp vectorunittest.cpp vectorunittest.hpp vector.hpp verbose.hpp
26VectorUnitTest_LDADD = ../libmolecuilder.a
27
28MemoryAllocatorUnitTest_SOURCES = defs.hpp helpers.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp memoryallocator.hpp memoryusageobserver.hpp verbose.hpp
29MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a
30
31MemoryUsageObserverUnitTest_SOURCES = defs.hpp helpers.hpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp memoryusageobserver.hpp verbose.hpp
32MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a
33
34#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.