[600a52] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 | FILLINGTESTSSOURCES = \
|
---|
[6499b1] | 5 | ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.cpp \
|
---|
[baac79] | 6 | ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.cpp \
|
---|
[83fd7d] | 7 | ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.cpp \
|
---|
| 8 | ../Filling/unittests/Ops_FillPredicateUnitTest.cpp
|
---|
[600a52] | 9 |
|
---|
| 10 | FILLINGTESTSHEADERS = \
|
---|
[6499b1] | 11 | ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.hpp \
|
---|
[baac79] | 12 | ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.hpp \
|
---|
[83fd7d] | 13 | ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.hpp \
|
---|
| 14 | ../Filling/unittests/Ops_FillPredicateUnitTest.hpp
|
---|
[600a52] | 15 |
|
---|
| 16 | FILLINGTESTS = \
|
---|
[6499b1] | 17 | IsInsideDomain_FillPredicateUnitTest \
|
---|
[baac79] | 18 | IsValidInDomain_FillPredicateUnitTest \
|
---|
[83fd7d] | 19 | IsVoidNode_FillPredicateUnitTest \
|
---|
| 20 | Ops_FillPredicateUnitTest
|
---|
| 21 |
|
---|
[600a52] | 22 | TESTS += $(FILLINGTESTS)
|
---|
| 23 | check_PROGRAMS += $(FILLINGTESTS)
|
---|
| 24 | noinst_PROGRAMS += $(FILLINGTESTS)
|
---|
| 25 |
|
---|
| 26 | FILLINGLIBS =
|
---|
| 27 |
|
---|
[6499b1] | 28 | IsInsideDomain_FillPredicateUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 29 | ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.cpp \
|
---|
| 30 | ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.hpp
|
---|
| 31 | IsInsideDomain_FillPredicateUnitTest_LDADD = \
|
---|
| 32 | ../libMolecuilderFilling.la \
|
---|
| 33 | ../libMolecuilderUI.la \
|
---|
| 34 | ../libMolecuilder.la \
|
---|
| 35 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 36 | ${CodePatterns_LIBS} \
|
---|
| 37 | $(BOOST_LIBS)
|
---|
| 38 |
|
---|
[600a52] | 39 | IsValidInDomain_FillPredicateUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 40 | ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.cpp \
|
---|
| 41 | ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.hpp
|
---|
| 42 | IsValidInDomain_FillPredicateUnitTest_LDADD = \
|
---|
| 43 | ../libMolecuilderFilling.la \
|
---|
| 44 | ../libMolecuilderUI.la \
|
---|
| 45 | ../libMolecuilder.la \
|
---|
| 46 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 47 | ${CodePatterns_LIBS} \
|
---|
| 48 | $(BOOST_LIBS)
|
---|
| 49 |
|
---|
[baac79] | 50 | IsVoidNode_FillPredicateUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 51 | ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.cpp \
|
---|
| 52 | ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.hpp
|
---|
| 53 | IsVoidNode_FillPredicateUnitTest_LDADD = \
|
---|
| 54 | ../libMolecuilderFilling.la \
|
---|
| 55 | ../libMolecuilderUI.la \
|
---|
| 56 | ../libMolecuilder.la \
|
---|
| 57 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 58 | ${CodePatterns_LIBS} \
|
---|
| 59 | $(BOOST_LIBS)
|
---|
| 60 |
|
---|
[83fd7d] | 61 | Ops_FillPredicateUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 62 | ../Filling/unittests/Ops_FillPredicateUnitTest.cpp \
|
---|
| 63 | ../Filling/unittests/Ops_FillPredicateUnitTest.hpp
|
---|
| 64 | Ops_FillPredicateUnitTest_LDADD = \
|
---|
| 65 | ../libMolecuilderFilling.la \
|
---|
| 66 | ../libMolecuilderUI.la \
|
---|
| 67 | ../libMolecuilder.la \
|
---|
| 68 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 69 | ${CodePatterns_LIBS} \
|
---|
| 70 | $(BOOST_LIBS)
|
---|
| 71 |
|
---|
[600a52] | 72 |
|
---|
| 73 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|