| [deddf6] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
 | 
|---|
 | 2 | # Also indentation by a single tab
 | 
|---|
 | 3 | 
 | 
|---|
 | 4 | INCLUDES = -I$(top_srcdir)/src
 | 
|---|
 | 5 | 
 | 
|---|
| [a0064e] | 6 | AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
 | 
|---|
 | 7 | AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
 | 
|---|
| [deddf6] | 8 | 
 | 
|---|
 | 9 | TESTS = \
 | 
|---|
| [f7c0c4] | 10 |   ActionRegistryUnitTest \
 | 
|---|
| [3c8e8b] | 11 |   ActionSequenceUnitTest \
 | 
|---|
| [efd61b] | 12 |   AtomsCalculationUnitTest \
 | 
|---|
 | 13 |   ManipulateAtomsUnitTest
 | 
|---|
| [deddf6] | 14 | 
 | 
|---|
 | 15 | check_PROGRAMS = $(TESTS) 
 | 
|---|
 | 16 | noinst_PROGRAMS = $(TESTS)
 | 
|---|
 | 17 | 
 | 
|---|
 | 18 | BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
 | 
|---|
 | 19 | GSLLIBS = \
 | 
|---|
| [6d2207] | 20 |         ../../Shapes/libMolecuilderShapes.la \
 | 
|---|
| [acbe1b] | 21 |         ../../LinearAlgebra/libMolecuilderLinearAlgebra.la \
 | 
|---|
 | 22 |         ../../Exceptions/libMolecuilderExceptions.la \
 | 
|---|
| [1ee3b8d] | 23 |         ../../RandomNumbers/libMolecuilderRandomNumbers.la \
 | 
|---|
| [a0064e] | 24 |         ${CodePatterns_LIBS} \
 | 
|---|
| [deddf6] | 25 |         $(BOOST_LIB)
 | 
|---|
 | 26 | ALLLIBS = \
 | 
|---|
| [acbe1b] | 27 |         ../../UIElements/libMolecuilderUI.la \
 | 
|---|
 | 28 |         ../../Actions/libMolecuilderActions.la \
 | 
|---|
| [deddf6] | 29 |         ${PARSERLIBS} \
 | 
|---|
| [acbe1b] | 30 |         ../../libMolecuilder.la \
 | 
|---|
| [deddf6] | 31 |         ${GSLLIBS}
 | 
|---|
 | 32 | 
 | 
|---|
| [acbe1b] | 33 | PARSERLIBS = ../../Parser/libMolecuilderParser.la
 | 
|---|
 | 34 | UILIBS = ../../UIElements/libMolecuilderUI.la  
 | 
|---|
| [deddf6] | 35 | 
 | 
|---|
 | 36 | 
 | 
|---|
 | 37 | ActionRegistryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 38 |         ActionRegistryUnitTest.cpp \
 | 
|---|
 | 39 |         ActionRegistryUnitTest.hpp
 | 
|---|
 | 40 | ActionRegistryUnitTest_LDADD = ${ALLLIBS}
 | 
|---|
 | 41 | 
 | 
|---|
| [f7c0c4] | 42 | ActionSequenceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 43 |         ActionSequenceUnitTest.cpp \
 | 
|---|
 | 44 |         ActionSequenceUnitTest.hpp
 | 
|---|
| [fff54f] | 45 | ActionSequenceUnitTest_LDADD = ${ALLLIBS}
 | 
|---|
| [f7c0c4] | 46 | 
 | 
|---|
| [3c8e8b] | 47 | AtomsCalculationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 48 |         AtomsCalculationUnitTest.cpp \
 | 
|---|
 | 49 |         AtomsCalculationUnitTest.hpp
 | 
|---|
 | 50 | AtomsCalculationUnitTest_LDADD = ${ALLLIBS}
 | 
|---|
 | 51 | 
 | 
|---|
| [efd61b] | 52 | ManipulateAtomsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 53 |         ManipulateAtomsUnitTest.cpp \
 | 
|---|
 | 54 |         ManipulateAtomsUnitTest.hpp
 | 
|---|
 | 55 | ManipulateAtomsUnitTest_LDADD = ${ALLLIBS}
 | 
|---|
 | 56 | 
 | 
|---|
 | 57 | 
 | 
|---|
| [f7c0c4] | 58 | 
 | 
|---|
| [6d2207] | 59 | 
 | 
|---|
| [deddf6] | 60 | #AUTOMAKE_OPTIONS = parallel-tests
 | 
|---|