## ## Scilab ( http://www.scilab.org/ ) - This file is part of Scilab ## Copyright (C) 2006-2008 - INRIA - Bruno JOFRET ## ## This file must be used under the terms of the CeCILL. ## This source file is licensed as described in the file COPYING, which ## you should have received as part of this distribution. The terms ## are also available at ## http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt ## ## libStdevf_la_CFLAGS = -I $(top_builddir)/src/c/type \ -I $(top_builddir)/src/c/operations/includes \ -I $(top_builddir)/src/c/auxiliaryFunctions/includes \ -I $(top_builddir)/src/c/elementaryFunctions/includes \ -I ../includes instdir = $(top_builddir)/lib pkglib_LTLIBRARIES = libStdevf.la libStdevf_la_SOURCES = $(HEAD) $(SRC) SRC = sstdevfa.c \ srowstdevfa.c \ scolumnstdevfa.c \ dstdevfa.c \ drowstdevfa.c \ dcolumnstdevfa.c \ cstdevfa.c \ crowstdevfa.c \ ccolumnstdevfa.c \ zstdevfa.c \ zrowstdevfa.c \ zcolumnstdevfa.c HEAD = ../includes/stdevf.h #### # Checking Part #### check_INCLUDES = -I $(top_builddir)/src/c/statisticsFunctions/includes \ -I $(top_builddir)/src/c/operations/includes \ -I $(top_builddir)/src/c/auxiliaryFunctions/includes \ -I $(top_builddir)/src/c/elementaryFunctions/includes \ -I $(top_builddir)/src/c/type check_LDADD = $(top_builddir)/src/c/type/libDoubleComplex.la \ $(top_builddir)/src/c/type/libFloatComplex.la \ $(top_builddir)/src/c/operations/addition/libAddition.la \ $(top_builddir)/src/fortran/lapack/libscilapack.la \ $(top_builddir)/src/c/operations/subtraction/libSubtraction.la \ $(top_builddir)/src/c/statisticsFunctions/stdevf/libStdevf.la \ $(top_builddir)/src/c/statisticsFunctions/sum/libSum.la \ $(top_builddir)/src/c/statisticsFunctions/meanf/libMeanf.la \ $(top_builddir)/src/c/operations/division/libDivision.la \ $(top_builddir)/src/c/operations/multiplication/libMultiplication.la \ $(top_builddir)/src/c/auxiliaryFunctions/conj/libConj.la \ $(top_builddir)/src/c/elementaryFunctions/pow/libPow.la \ $(top_builddir)/src/c/elementaryFunctions/exp/libExp.la \ $(top_builddir)/src/c/elementaryFunctions/sin/libSin.la \ $(top_builddir)/src/c/elementaryFunctions/cos/libCos.la \ $(top_builddir)/src/c/elementaryFunctions/cosh/libCosh.la \ $(top_builddir)/src/c/elementaryFunctions/log/libLog.la \ $(top_builddir)/src/c/elementaryFunctions/log1p/libLog1p.la \ $(top_builddir)/src/c/elementaryFunctions/lnp1m1/libLnp1m1.la \ $(top_builddir)/src/c/auxiliaryFunctions/pythag/libPythag.la \ $(top_builddir)/src/c/auxiliaryFunctions/abs/libAbs.la \ $(top_builddir)/src/c/elementaryFunctions/sinh/libSinh.la \ $(top_builddir)/src/c/elementaryFunctions/sqrt/libSqrt.la \ @LIBMATH@ check_PROGRAMS = testFloatStdevf testDoubleStdevf TESTS = testFloatStdevf testDoubleStdevf # # -*- Stdevf Tests -*- # testFloatStdevf_SOURCES = testFloatStdevf.c testFloatStdevf_CFLAGS = $(check_INCLUDES) testFloatStdevf_LDADD = $(check_LDADD) testDoubleStdevf_SOURCES =testDoubleStdevf.c testDoubleStdevf_CFLAGS = $(check_INCLUDES) testDoubleStdevf_LDADD = $(check_LDADD)