| [600a52] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
 | 
|---|
 | 2 | # Also indentation by a single tab
 | 
|---|
 | 3 | 
 | 
|---|
 | 4 | FILLINGTESTSSOURCES = \
 | 
|---|
| [8f6e2a] | 5 |   ../Filling/unittests/ClusterUnitTest.cpp \
 | 
|---|
| [d505a3] | 6 |   ../Filling/unittests/FillerUnitTest.cpp \
 | 
|---|
| [6499b1] | 7 |   ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.cpp \
 | 
|---|
| [7adddc] | 8 |   ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.cpp \
 | 
|---|
| [baac79] | 9 |   ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.cpp \
 | 
|---|
| [83fd7d] | 10 |   ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.cpp \
 | 
|---|
 | 11 |   ../Filling/unittests/Ops_FillPredicateUnitTest.cpp
 | 
|---|
| [600a52] | 12 | 
 | 
|---|
 | 13 | FILLINGTESTSHEADERS = \
 | 
|---|
| [8f6e2a] | 14 |   ../Filling/unittests/ClusterUnitTest.hpp \
 | 
|---|
| [d505a3] | 15 |   ../Filling/unittests/FillerUnitTest.hpp \
 | 
|---|
| [6499b1] | 16 |   ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.hpp \
 | 
|---|
| [7adddc] | 17 |   ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.hpp \
 | 
|---|
| [baac79] | 18 |   ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.hpp \
 | 
|---|
| [83fd7d] | 19 |   ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.hpp \
 | 
|---|
 | 20 |   ../Filling/unittests/Ops_FillPredicateUnitTest.hpp
 | 
|---|
| [600a52] | 21 | 
 | 
|---|
 | 22 | FILLINGTESTS = \
 | 
|---|
| [8f6e2a] | 23 |   ClusterUnitTest \
 | 
|---|
| [d505a3] | 24 |   FillerUnitTest \
 | 
|---|
| [6499b1] | 25 |   IsInsideDomain_FillPredicateUnitTest \
 | 
|---|
| [7adddc] | 26 |   IsInsideSurface_FillPredicateUnitTest \
 | 
|---|
| [baac79] | 27 |   IsValidInDomain_FillPredicateUnitTest \
 | 
|---|
| [83fd7d] | 28 |   IsVoidNode_FillPredicateUnitTest \
 | 
|---|
 | 29 |   Ops_FillPredicateUnitTest
 | 
|---|
 | 30 |   
 | 
|---|
| [600a52] | 31 | TESTS += $(FILLINGTESTS)
 | 
|---|
 | 32 | check_PROGRAMS += $(FILLINGTESTS) 
 | 
|---|
 | 33 | noinst_PROGRAMS += $(FILLINGTESTS)
 | 
|---|
 | 34 | 
 | 
|---|
| [eb0d77] | 35 | FILLINGLIBS = \
 | 
|---|
| [e9e86f] | 36 |         libUnitTest.la \
 | 
|---|
| [748fc7] | 37 |         ../libMolecuilder.la \
 | 
|---|
| [8f6e2a] | 38 |         ../libMolecuilderFilling.la \
 | 
|---|
| [748fc7] | 39 |         ../libMolecuilderShapes.la \
 | 
|---|
 | 40 |         ../libMolecuilderUI.la
 | 
|---|
| [eb0d77] | 41 | if CONDJOBMARKET
 | 
|---|
 | 42 | FILLINGLIBS += \
 | 
|---|
 | 43 |         ../libMolecuilderJobs.la
 | 
|---|
 | 44 | endif
 | 
|---|
 | 45 | FILLINGLIBS += \
 | 
|---|
| [8f6e2a] | 46 |         $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
 | 
|---|
 | 47 |         ${CodePatterns_LIBS} \
 | 
|---|
| [353326] | 48 |         $(BOOST_LIB)
 | 
|---|
| [8f6e2a] | 49 | 
 | 
|---|
| [e9e86f] | 50 | ClusterUnitTest_SOURCES = \
 | 
|---|
| [eb0d77] | 51 |         ../Filling/unittests/ClusterUnitTest.cpp \
 | 
|---|
 | 52 |         ../Filling/unittests/ClusterUnitTest.hpp
 | 
|---|
 | 53 | ClusterUnitTest_LDADD = $(FILLINGLIBS)
 | 
|---|
 | 54 | 
 | 
|---|
| [e9e86f] | 55 | FillerUnitTest_SOURCES = \
 | 
|---|
| [d505a3] | 56 |         ../Filling/unittests/FillerUnitTest.cpp \
 | 
|---|
 | 57 |         ../Filling/unittests/FillerUnitTest.hpp
 | 
|---|
| [eb0d77] | 58 | FillerUnitTest_LDADD = $(FILLINGLIBS)
 | 
|---|
| [d505a3] | 59 | 
 | 
|---|
| [e9e86f] | 60 | IsInsideDomain_FillPredicateUnitTest_SOURCES = \
 | 
|---|
| [6499b1] | 61 |         ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.cpp \
 | 
|---|
 | 62 |         ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.hpp
 | 
|---|
| [eb0d77] | 63 | IsInsideDomain_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
 | 
|---|
| [6499b1] | 64 | 
 | 
|---|
| [e9e86f] | 65 | IsInsideSurface_FillPredicateUnitTest_SOURCES = \
 | 
|---|
| [7adddc] | 66 |         ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.cpp \
 | 
|---|
 | 67 |         ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.hpp
 | 
|---|
| [eb0d77] | 68 | IsInsideSurface_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
 | 
|---|
| [7adddc] | 69 | 
 | 
|---|
| [e9e86f] | 70 | IsValidInDomain_FillPredicateUnitTest_SOURCES = \
 | 
|---|
| [600a52] | 71 |         ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.cpp \
 | 
|---|
 | 72 |         ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.hpp
 | 
|---|
| [eb0d77] | 73 | IsValidInDomain_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
 | 
|---|
| [600a52] | 74 | 
 | 
|---|
| [e9e86f] | 75 | IsVoidNode_FillPredicateUnitTest_SOURCES = \
 | 
|---|
| [baac79] | 76 |         ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.cpp \
 | 
|---|
 | 77 |         ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.hpp
 | 
|---|
| [eb0d77] | 78 | IsVoidNode_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
 | 
|---|
| [baac79] | 79 | 
 | 
|---|
| [e9e86f] | 80 | Ops_FillPredicateUnitTest_SOURCES = \
 | 
|---|
| [83fd7d] | 81 |         ../Filling/unittests/Ops_FillPredicateUnitTest.cpp \
 | 
|---|
 | 82 |         ../Filling/unittests/Ops_FillPredicateUnitTest.hpp
 | 
|---|
| [eb0d77] | 83 | Ops_FillPredicateUnitTest_LDADD = $(FILLINGLIBS)
 | 
|---|
| [83fd7d] | 84 | 
 | 
|---|
| [600a52] | 85 | 
 | 
|---|
 | 86 | #AUTOMAKE_OPTIONS = parallel-tests
 | 
|---|