diff options
-rw-r--r-- | src/statisticsFunctions/mean/Makefile.am | 2 | ||||
-rw-r--r-- | src/statisticsFunctions/mean/Makefile.in | 6 | ||||
-rw-r--r-- | src/statisticsFunctions/variance/Makefile.am | 1 | ||||
-rw-r--r-- | src/statisticsFunctions/variance/Makefile.in | 4 |
4 files changed, 11 insertions, 2 deletions
diff --git a/src/statisticsFunctions/mean/Makefile.am b/src/statisticsFunctions/mean/Makefile.am index 9d23e3db..a855ef33 100644 --- a/src/statisticsFunctions/mean/Makefile.am +++ b/src/statisticsFunctions/mean/Makefile.am @@ -49,6 +49,8 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/statisticsFunctions/mean/libMean.la \ $(top_builddir)/statisticsFunctions/sum/libSum.la \ $(top_builddir)/operations/division/libDivision.la \ + $(top_builddir)/operations/multiplication/libMultiplication.la \ + $(top_builddir)/auxiliaryFunctions/conj/libConj.la \ @LIBMATH@ check_PROGRAMS = testFloatMean testDoubleMean diff --git a/src/statisticsFunctions/mean/Makefile.in b/src/statisticsFunctions/mean/Makefile.in index b43517a0..7f76c632 100644 --- a/src/statisticsFunctions/mean/Makefile.in +++ b/src/statisticsFunctions/mean/Makefile.in @@ -72,7 +72,9 @@ am__DEPENDENCIES_1 = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/operations/addition/libAddition.la \ $(top_builddir)/statisticsFunctions/mean/libMean.la \ $(top_builddir)/statisticsFunctions/sum/libSum.la \ - $(top_builddir)/operations/division/libDivision.la + $(top_builddir)/operations/division/libDivision.la \ + $(top_builddir)/operations/multiplication/libMultiplication.la \ + $(top_builddir)/auxiliaryFunctions/conj/libConj.la testDoubleMean_DEPENDENCIES = $(am__DEPENDENCIES_1) testDoubleMean_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(testDoubleMean_CFLAGS) \ @@ -247,6 +249,8 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/statisticsFunctions/mean/libMean.la \ $(top_builddir)/statisticsFunctions/sum/libSum.la \ $(top_builddir)/operations/division/libDivision.la \ + $(top_builddir)/operations/multiplication/libMultiplication.la \ + $(top_builddir)/auxiliaryFunctions/conj/libConj.la \ @LIBMATH@ diff --git a/src/statisticsFunctions/variance/Makefile.am b/src/statisticsFunctions/variance/Makefile.am index 656a1249..51c704c7 100644 --- a/src/statisticsFunctions/variance/Makefile.am +++ b/src/statisticsFunctions/variance/Makefile.am @@ -70,6 +70,7 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/matrixOperations/transpose/libMatrixTranspose.la \ $(top_builddir)/operations/multiplication/libMultiplication.la \ $(top_builddir)/operations/division/libDivision.la \ + $(top_builddir)/auxiliaryFunctions/conj/libConj.la \ @LIBMATH@ check_PROGRAMS = testFloatVariance testDoubleVariance diff --git a/src/statisticsFunctions/variance/Makefile.in b/src/statisticsFunctions/variance/Makefile.in index 77ee5f92..45e4867c 100644 --- a/src/statisticsFunctions/variance/Makefile.in +++ b/src/statisticsFunctions/variance/Makefile.in @@ -94,7 +94,8 @@ am__DEPENDENCIES_1 = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/auxiliaryFunctions/abs/libAbs.la \ $(top_builddir)/matrixOperations/transpose/libMatrixTranspose.la \ $(top_builddir)/operations/multiplication/libMultiplication.la \ - $(top_builddir)/operations/division/libDivision.la + $(top_builddir)/operations/division/libDivision.la \ + $(top_builddir)/auxiliaryFunctions/conj/libConj.la testDoubleVariance_DEPENDENCIES = $(am__DEPENDENCIES_1) testDoubleVariance_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) \ @@ -293,6 +294,7 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/matrixOperations/transpose/libMatrixTranspose.la \ $(top_builddir)/operations/multiplication/libMultiplication.la \ $(top_builddir)/operations/division/libDivision.la \ + $(top_builddir)/auxiliaryFunctions/conj/libConj.la \ @LIBMATH@ |