diff options
author | jofret | 2008-06-26 17:18:16 +0000 |
---|---|---|
committer | jofret | 2008-06-26 17:18:16 +0000 |
commit | 09444cda0c8355cfb49c2a96e807512d0b3124c8 (patch) | |
tree | 123cc6bdf0b1dd4ee4011d6f8d6e4a0d0e74b72d /src/elementaryFunctions | |
parent | a3253247b833e6c01e90fabdf5d43e69b6e6784b (diff) | |
download | scilab2c-09444cda0c8355cfb49c2a96e807512d0b3124c8.tar.gz scilab2c-09444cda0c8355cfb49c2a96e807512d0b3124c8.tar.bz2 scilab2c-09444cda0c8355cfb49c2a96e807512d0b3124c8.zip |
Enable make dist work
Diffstat (limited to 'src/elementaryFunctions')
42 files changed, 100 insertions, 90 deletions
diff --git a/src/elementaryFunctions/Makefile.am b/src/elementaryFunctions/Makefile.am index 4716ff64..5c9370ef 100644 --- a/src/elementaryFunctions/Makefile.am +++ b/src/elementaryFunctions/Makefile.am @@ -10,6 +10,8 @@ ## ## +dist_SUBDIRS= includes + SUBDIRS= cos \ cosh \ acos \ diff --git a/src/elementaryFunctions/Makefile.in b/src/elementaryFunctions/Makefile.in index 2a839ac2..3d4c2c4e 100644 --- a/src/elementaryFunctions/Makefile.in +++ b/src/elementaryFunctions/Makefile.in @@ -165,6 +165,7 @@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ +dist_SUBDIRS = includes SUBDIRS = cos \ cosh \ acos \ diff --git a/src/elementaryFunctions/acos/Makefile.am b/src/elementaryFunctions/acos/Makefile.am index fc890bb2..61a8f88d 100644 --- a/src/elementaryFunctions/acos/Makefile.am +++ b/src/elementaryFunctions/acos/Makefile.am @@ -29,7 +29,9 @@ SRC = sacoss.c \ cacosa.c \ zacosa.c -HEAD = ../includes/acos.h +HEAD = ../includes/acos.h \ + ../../auxiliaryFunctions/includes/min.h \ + ../../auxiliaryFunctions/includes/max.h #### # Checking Part @@ -58,10 +60,10 @@ TESTS = testFloatAcos testDoubleAcos # # -*- Acosine Tests -*- # -testFloatAcos_SOURCES = testFloatAcos.c +testFloatAcos_SOURCES = testAcos.h testFloatAcos.c testFloatAcos_CFLAGS = $(check_INCLUDES) testFloatAcos_LDADD = $(check_LDADD) -testDoubleAcos_SOURCES = testDoubleAcos.c +testDoubleAcos_SOURCES = testAcos.h testDoubleAcos.c testDoubleAcos_CFLAGS = $(check_INCLUDES) testDoubleAcos_LDADD = $(check_LDADD) diff --git a/src/elementaryFunctions/acos/Makefile.in b/src/elementaryFunctions/acos/Makefile.in index 45dafaf1..206ff4eb 100644 --- a/src/elementaryFunctions/acos/Makefile.in +++ b/src/elementaryFunctions/acos/Makefile.in @@ -230,7 +230,10 @@ SRC = sacoss.c \ cacosa.c \ zacosa.c -HEAD = ../includes/acos.h +HEAD = ../includes/acos.h \ + ../../auxiliaryFunctions/includes/min.h \ + ../../auxiliaryFunctions/includes/max.h + #### # Checking Part @@ -255,10 +258,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ # # -*- Acosine Tests -*- # -testFloatAcos_SOURCES = testFloatAcos.c +testFloatAcos_SOURCES = testAcos.h testFloatAcos.c testFloatAcos_CFLAGS = $(check_INCLUDES) testFloatAcos_LDADD = $(check_LDADD) -testDoubleAcos_SOURCES = testDoubleAcos.c +testDoubleAcos_SOURCES = testAcos.h testDoubleAcos.c testDoubleAcos_CFLAGS = $(check_INCLUDES) testDoubleAcos_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/acosh/Makefile.am b/src/elementaryFunctions/acosh/Makefile.am index 8a8551dd..e49fe6ec 100644 --- a/src/elementaryFunctions/acosh/Makefile.am +++ b/src/elementaryFunctions/acosh/Makefile.am @@ -58,10 +58,10 @@ TESTS = testFloatAcosh testDoubleAcosh # # -*- Hyperbolic Acosine Tests -*- # -testFloatAcosh_SOURCES = testFloatAcosh.c +testFloatAcosh_SOURCES = testAcosh.h testFloatAcosh.c testFloatAcosh_CFLAGS = $(check_INCLUDES) testFloatAcosh_LDADD = $(check_LDADD) -testDoubleAcosh_SOURCES = testDoubleAcosh.c +testDoubleAcosh_SOURCES = testAcosh.h testDoubleAcosh.c testDoubleAcosh_CFLAGS = $(check_INCLUDES) testDoubleAcosh_LDADD = $(check_LDADD)
\ No newline at end of file diff --git a/src/elementaryFunctions/acosh/Makefile.in b/src/elementaryFunctions/acosh/Makefile.in index 5ddf86d2..e1233356 100644 --- a/src/elementaryFunctions/acosh/Makefile.in +++ b/src/elementaryFunctions/acosh/Makefile.in @@ -258,10 +258,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ # # -*- Hyperbolic Acosine Tests -*- # -testFloatAcosh_SOURCES = testFloatAcosh.c +testFloatAcosh_SOURCES = testAcosh.h testFloatAcosh.c testFloatAcosh_CFLAGS = $(check_INCLUDES) testFloatAcosh_LDADD = $(check_LDADD) -testDoubleAcosh_SOURCES = testDoubleAcosh.c +testDoubleAcosh_SOURCES = testAcosh.h testDoubleAcosh.c testDoubleAcosh_CFLAGS = $(check_INCLUDES) testDoubleAcosh_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/asin/Makefile.am b/src/elementaryFunctions/asin/Makefile.am index cd472996..734afa49 100644 --- a/src/elementaryFunctions/asin/Makefile.am +++ b/src/elementaryFunctions/asin/Makefile.am @@ -61,10 +61,10 @@ TESTS = testFloatAsin testDoubleAsin # # -*- ArcSine Tests -*- # -testFloatAsin_SOURCES = testFloatAsin.c +testFloatAsin_SOURCES = testAsin.h testFloatAsin.c testFloatAsin_CFLAGS = $(check_INCLUDES) testFloatAsin_LDADD = $(check_LDADD) -testDoubleAsin_SOURCES = testDoubleAsin.c +testDoubleAsin_SOURCES = testAsin.h testDoubleAsin.c testDoubleAsin_CFLAGS = $(check_INCLUDES) testDoubleAsin_LDADD = $(check_LDADD)
\ No newline at end of file diff --git a/src/elementaryFunctions/asin/Makefile.in b/src/elementaryFunctions/asin/Makefile.in index a6bb0f44..a96457fe 100644 --- a/src/elementaryFunctions/asin/Makefile.in +++ b/src/elementaryFunctions/asin/Makefile.in @@ -258,10 +258,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ # # -*- ArcSine Tests -*- # -testFloatAsin_SOURCES = testFloatAsin.c +testFloatAsin_SOURCES = testAsin.h testFloatAsin.c testFloatAsin_CFLAGS = $(check_INCLUDES) testFloatAsin_LDADD = $(check_LDADD) -testDoubleAsin_SOURCES = testDoubleAsin.c +testDoubleAsin_SOURCES = testAsin.h testDoubleAsin.c testDoubleAsin_CFLAGS = $(check_INCLUDES) testDoubleAsin_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/asinh/Makefile.am b/src/elementaryFunctions/asinh/Makefile.am index a05f718a..b075cdcf 100644 --- a/src/elementaryFunctions/asinh/Makefile.am +++ b/src/elementaryFunctions/asinh/Makefile.am @@ -58,10 +58,10 @@ TESTS = testFloatAsinh testDoubleAsinh # # -*- Hyperbolic ArcSine Tests -*- # -testFloatAsinh_SOURCES = testFloatAsinh.c +testFloatAsinh_SOURCES = testAsinh.h testFloatAsinh.c testFloatAsinh_CFLAGS = $(check_INCLUDES) testFloatAsinh_LDADD = $(check_LDADD) -testDoubleAsinh_SOURCES = testDoubleAsinh.c +testDoubleAsinh_SOURCES = testAsinh.h testDoubleAsinh.c testDoubleAsinh_CFLAGS = $(check_INCLUDES) testDoubleAsinh_LDADD = $(check_LDADD)
\ No newline at end of file diff --git a/src/elementaryFunctions/asinh/Makefile.in b/src/elementaryFunctions/asinh/Makefile.in index 22a1beaf..44ea3f75 100644 --- a/src/elementaryFunctions/asinh/Makefile.in +++ b/src/elementaryFunctions/asinh/Makefile.in @@ -258,10 +258,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ # # -*- Hyperbolic ArcSine Tests -*- # -testFloatAsinh_SOURCES = testFloatAsinh.c +testFloatAsinh_SOURCES = testAsinh.h testFloatAsinh.c testFloatAsinh_CFLAGS = $(check_INCLUDES) testFloatAsinh_LDADD = $(check_LDADD) -testDoubleAsinh_SOURCES = testDoubleAsinh.c +testDoubleAsinh_SOURCES = testAsinh.h testDoubleAsinh.c testDoubleAsinh_CFLAGS = $(check_INCLUDES) testDoubleAsinh_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/atan/Makefile.am b/src/elementaryFunctions/atan/Makefile.am index 9a629198..21028df4 100644 --- a/src/elementaryFunctions/atan/Makefile.am +++ b/src/elementaryFunctions/atan/Makefile.am @@ -56,10 +56,10 @@ TESTS = testFloatAtan testDoubleAtan # # -*- Arc tangeant Tests -*- # -testFloatAtan_SOURCES = testFloatAtan.c +testFloatAtan_SOURCES = testAtan.h testFloatAtan.c testFloatAtan_CFLAGS = $(check_INCLUDES) testFloatAtan_LDADD = $(check_LDADD) -testDoubleAtan_SOURCES = testDoubleAtan.c +testDoubleAtan_SOURCES = testAtan.h testDoubleAtan.c testDoubleAtan_CFLAGS = $(check_INCLUDES) testDoubleAtan_LDADD = $(check_LDADD) diff --git a/src/elementaryFunctions/atan/Makefile.in b/src/elementaryFunctions/atan/Makefile.in index beb7b819..a190db23 100644 --- a/src/elementaryFunctions/atan/Makefile.in +++ b/src/elementaryFunctions/atan/Makefile.in @@ -249,10 +249,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ # # -*- Arc tangeant Tests -*- # -testFloatAtan_SOURCES = testFloatAtan.c +testFloatAtan_SOURCES = testAtan.h testFloatAtan.c testFloatAtan_CFLAGS = $(check_INCLUDES) testFloatAtan_LDADD = $(check_LDADD) -testDoubleAtan_SOURCES = testDoubleAtan.c +testDoubleAtan_SOURCES = testAtan.h testDoubleAtan.c testDoubleAtan_CFLAGS = $(check_INCLUDES) testDoubleAtan_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/atanh/Makefile.am b/src/elementaryFunctions/atanh/Makefile.am index 99b6a16c..d182a9e3 100644 --- a/src/elementaryFunctions/atanh/Makefile.am +++ b/src/elementaryFunctions/atanh/Makefile.am @@ -55,10 +55,10 @@ TESTS = testFloatAtanh testDoubleAtanh # # -*- Hyperbolic ArcTangeant Tests -*- # -testFloatAtanh_SOURCES = testFloatAtanh.c +testFloatAtanh_SOURCES = testAtanh.h testFloatAtanh.c testFloatAtanh_CFLAGS = $(check_INCLUDES) testFloatAtanh_LDADD = $(check_LDADD) -testDoubleAtanh_SOURCES = testDoubleAtanh.c +testDoubleAtanh_SOURCES = testAtanh.h testDoubleAtanh.c testDoubleAtanh_CFLAGS = $(check_INCLUDES) testDoubleAtanh_LDADD = $(check_LDADD) diff --git a/src/elementaryFunctions/atanh/Makefile.in b/src/elementaryFunctions/atanh/Makefile.in index 0087bd0e..6d30d5c9 100644 --- a/src/elementaryFunctions/atanh/Makefile.in +++ b/src/elementaryFunctions/atanh/Makefile.in @@ -252,10 +252,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ # # -*- Hyperbolic ArcTangeant Tests -*- # -testFloatAtanh_SOURCES = testFloatAtanh.c +testFloatAtanh_SOURCES = testAtanh.h testFloatAtanh.c testFloatAtanh_CFLAGS = $(check_INCLUDES) testFloatAtanh_LDADD = $(check_LDADD) -testDoubleAtanh_SOURCES = testDoubleAtanh.c +testDoubleAtanh_SOURCES = testAtanh.h testDoubleAtanh.c testDoubleAtanh_CFLAGS = $(check_INCLUDES) testDoubleAtanh_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/cos/Makefile.am b/src/elementaryFunctions/cos/Makefile.am index afb30435..53690bef 100644 --- a/src/elementaryFunctions/cos/Makefile.am +++ b/src/elementaryFunctions/cos/Makefile.am @@ -10,14 +10,18 @@ ## ## -libCos_la_CFLAGS = -I ../../type \ - -I ../includes + + +libCos_la_CFLAGS = -I $(top_builddir)/type \ + -I $(top_builddir)/elementaryFunctions/includes instdir = $(top_builddir)/lib pkglib_LTLIBRARIES = libCos.la -libCos_la_SOURCES = $(HEAD) $(SRC) +libCos_la_SOURCES = $(HEAD) $(SRC) + +HEAD = ../includes/cos.h SRC = scoss.c \ dcoss.c \ @@ -28,8 +32,6 @@ SRC = scoss.c \ ccosa.c \ zcosa.c -HEAD = ../includes/cos.h - #### # Checking Part #### @@ -57,10 +59,10 @@ TESTS = testFloatCos testDoubleCos # # -*- Cosine Tests -*- # -testFloatCos_SOURCES = testFloatCos.c +testFloatCos_SOURCES = ../../includes/constant.h testCos.h testFloatCos.c testFloatCos_CFLAGS = $(check_INCLUDES) testFloatCos_LDADD = $(check_LDADD) -testDoubleCos_SOURCES = testDoubleCos.c +testDoubleCos_SOURCES = ../../includes/constant.h testCos.h testDoubleCos.c testDoubleCos_CFLAGS = $(check_INCLUDES) testDoubleCos_LDADD = $(check_LDADD)
\ No newline at end of file diff --git a/src/elementaryFunctions/cos/Makefile.in b/src/elementaryFunctions/cos/Makefile.in index 9cf6b887..d3f13b25 100644 --- a/src/elementaryFunctions/cos/Makefile.in +++ b/src/elementaryFunctions/cos/Makefile.in @@ -214,12 +214,13 @@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -libCos_la_CFLAGS = -I ../../type \ - -I ../includes +libCos_la_CFLAGS = -I $(top_builddir)/type \ + -I $(top_builddir)/elementaryFunctions/includes instdir = $(top_builddir)/lib pkglib_LTLIBRARIES = libCos.la libCos_la_SOURCES = $(HEAD) $(SRC) +HEAD = ../includes/cos.h SRC = scoss.c \ dcoss.c \ ccoss.c \ @@ -229,7 +230,6 @@ SRC = scoss.c \ ccosa.c \ zcosa.c -HEAD = ../includes/cos.h #### # Checking Part @@ -254,10 +254,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ # # -*- Cosine Tests -*- # -testFloatCos_SOURCES = testFloatCos.c +testFloatCos_SOURCES = ../../includes/constant.h testCos.h testFloatCos.c testFloatCos_CFLAGS = $(check_INCLUDES) testFloatCos_LDADD = $(check_LDADD) -testDoubleCos_SOURCES = testDoubleCos.c +testDoubleCos_SOURCES = ../../includes/constant.h testCos.h testDoubleCos.c testDoubleCos_CFLAGS = $(check_INCLUDES) testDoubleCos_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/cosh/Makefile.am b/src/elementaryFunctions/cosh/Makefile.am index 63a49712..baf6dd48 100644 --- a/src/elementaryFunctions/cosh/Makefile.am +++ b/src/elementaryFunctions/cosh/Makefile.am @@ -58,10 +58,10 @@ TESTS = testFloatCosh testDoubleCosh # # -*- Hyperbolic Cosine Tests -*- # -testFloatCosh_SOURCES = testFloatCosh.c +testFloatCosh_SOURCES = testCosh.h testFloatCosh.c testFloatCosh_CFLAGS = $(check_INCLUDES) testFloatCosh_LDADD = $(check_LDADD) -testDoubleCosh_SOURCES = testDoubleCosh.c +testDoubleCosh_SOURCES = testCosh.h testDoubleCosh.c testDoubleCosh_CFLAGS = $(check_INCLUDES) testDoubleCosh_LDADD = $(check_LDADD) diff --git a/src/elementaryFunctions/cosh/Makefile.in b/src/elementaryFunctions/cosh/Makefile.in index cbca4c9d..455d3b16 100644 --- a/src/elementaryFunctions/cosh/Makefile.in +++ b/src/elementaryFunctions/cosh/Makefile.in @@ -255,10 +255,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ # # -*- Hyperbolic Cosine Tests -*- # -testFloatCosh_SOURCES = testFloatCosh.c +testFloatCosh_SOURCES = testCosh.h testFloatCosh.c testFloatCosh_CFLAGS = $(check_INCLUDES) testFloatCosh_LDADD = $(check_LDADD) -testDoubleCosh_SOURCES = testDoubleCosh.c +testDoubleCosh_SOURCES = testCosh.h testDoubleCosh.c testDoubleCosh_CFLAGS = $(check_INCLUDES) testDoubleCosh_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/exp/Makefile.am b/src/elementaryFunctions/exp/Makefile.am index 9bf9e184..6a6dcd4d 100644 --- a/src/elementaryFunctions/exp/Makefile.am +++ b/src/elementaryFunctions/exp/Makefile.am @@ -54,10 +54,10 @@ check_PROGRAMS = testFloatExp testDoubleExp TESTS = testFloatExp testDoubleExp -testFloatExp_SOURCES = testFloatExp.c +testFloatExp_SOURCES = testExp.h testFloatExp.c testFloatExp_CFLAGS = $(check_INCLUDES) testFloatExp_LDADD = $(check_LDADD) -testDoubleExp_SOURCES = testDoubleExp.c +testDoubleExp_SOURCES = testExp.h testDoubleExp.c testDoubleExp_CFLAGS = $(check_INCLUDES) testDoubleExp_LDADD = $(check_LDADD) diff --git a/src/elementaryFunctions/exp/Makefile.in b/src/elementaryFunctions/exp/Makefile.in index d8cfe96e..074379db 100644 --- a/src/elementaryFunctions/exp/Makefile.in +++ b/src/elementaryFunctions/exp/Makefile.in @@ -250,10 +250,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/auxiliaryFunctions/pythag/libPythag.la \ @LIBMATH@ -testFloatExp_SOURCES = testFloatExp.c +testFloatExp_SOURCES = testExp.h testFloatExp.c testFloatExp_CFLAGS = $(check_INCLUDES) testFloatExp_LDADD = $(check_LDADD) -testDoubleExp_SOURCES = testDoubleExp.c +testDoubleExp_SOURCES = testExp.h testDoubleExp.c testDoubleExp_CFLAGS = $(check_INCLUDES) testDoubleExp_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/exp10/Makefile.am b/src/elementaryFunctions/exp10/Makefile.am index ef63cb8c..c2123ea4 100644 --- a/src/elementaryFunctions/exp10/Makefile.am +++ b/src/elementaryFunctions/exp10/Makefile.am @@ -59,10 +59,10 @@ check_PROGRAMS = testFloatExp10 testDoubleExp10 TESTS = testFloatExp10 testDoubleExp10 -testFloatExp10_SOURCES = testFloatExp10.c +testFloatExp10_SOURCES = testExp10.h testFloatExp10.c testFloatExp10_CFLAGS = $(check_INCLUDES) testFloatExp10_LDADD = $(check_LDADD) -testDoubleExp10_SOURCES = testDoubleExp10.c +testDoubleExp10_SOURCES = testExp10.h testDoubleExp10.c testDoubleExp10_CFLAGS = $(check_INCLUDES) testDoubleExp10_LDADD = $(check_LDADD) diff --git a/src/elementaryFunctions/exp10/Makefile.in b/src/elementaryFunctions/exp10/Makefile.in index 89400c55..11f51e49 100644 --- a/src/elementaryFunctions/exp10/Makefile.in +++ b/src/elementaryFunctions/exp10/Makefile.in @@ -262,10 +262,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/auxiliaryFunctions/pythag/libPythag.la \ @LIBMATH@ -testFloatExp10_SOURCES = testFloatExp10.c +testFloatExp10_SOURCES = testExp10.h testFloatExp10.c testFloatExp10_CFLAGS = $(check_INCLUDES) testFloatExp10_LDADD = $(check_LDADD) -testDoubleExp10_SOURCES = testDoubleExp10.c +testDoubleExp10_SOURCES = testExp10.h testDoubleExp10.c testDoubleExp10_CFLAGS = $(check_INCLUDES) testDoubleExp10_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/lnp1m1/Makefile.am b/src/elementaryFunctions/lnp1m1/Makefile.am index 537853bf..c27f136c 100644 --- a/src/elementaryFunctions/lnp1m1/Makefile.am +++ b/src/elementaryFunctions/lnp1m1/Makefile.am @@ -45,10 +45,10 @@ check_PROGRAMS = testFloatLnp1m1 testDoubleLnp1m1 TESTS = testFloatLnp1m1 testDoubleLnp1m1 -testFloatLnp1m1_SOURCES = testFloatLnp1m1.c +testFloatLnp1m1_SOURCES = testLnp1m1.h testFloatLnp1m1.c testFloatLnp1m1_CFLAGS = $(check_INCLUDES) testFloatLnp1m1_LDADD = $(check_LDADD) -testDoubleLnp1m1_SOURCES = testDoubleLnp1m1.c +testDoubleLnp1m1_SOURCES = testLnp1m1.h testDoubleLnp1m1.c testDoubleLnp1m1_CFLAGS = $(check_INCLUDES) testDoubleLnp1m1_LDADD = $(check_LDADD) diff --git a/src/elementaryFunctions/lnp1m1/Makefile.in b/src/elementaryFunctions/lnp1m1/Makefile.in index edc7a99a..6d7b3364 100644 --- a/src/elementaryFunctions/lnp1m1/Makefile.in +++ b/src/elementaryFunctions/lnp1m1/Makefile.in @@ -237,10 +237,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/auxiliaryFunctions/abs/libAbs.la \ @LIBMATH@ -testFloatLnp1m1_SOURCES = testFloatLnp1m1.c +testFloatLnp1m1_SOURCES = testLnp1m1.h testFloatLnp1m1.c testFloatLnp1m1_CFLAGS = $(check_INCLUDES) testFloatLnp1m1_LDADD = $(check_LDADD) -testDoubleLnp1m1_SOURCES = testDoubleLnp1m1.c +testDoubleLnp1m1_SOURCES = testLnp1m1.h testDoubleLnp1m1.c testDoubleLnp1m1_CFLAGS = $(check_INCLUDES) testDoubleLnp1m1_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/log/Makefile.am b/src/elementaryFunctions/log/Makefile.am index 9439b345..919d62c8 100644 --- a/src/elementaryFunctions/log/Makefile.am +++ b/src/elementaryFunctions/log/Makefile.am @@ -53,10 +53,10 @@ check_PROGRAMS = testFloatLog testDoubleLog TESTS = testFloatLog testDoubleLog -testFloatLog_SOURCES = testFloatLog.c +testFloatLog_SOURCES = testLog.h testFloatLog.c testFloatLog_CFLAGS = $(check_INCLUDES) testFloatLog_LDADD = $(check_LDADD) -testDoubleLog_SOURCES = testDoubleLog.c +testDoubleLog_SOURCES = testLog.h testDoubleLog.c testDoubleLog_CFLAGS = $(check_INCLUDES) testDoubleLog_LDADD = $(check_LDADD) diff --git a/src/elementaryFunctions/log/Makefile.in b/src/elementaryFunctions/log/Makefile.in index 566df853..b45ffc1d 100644 --- a/src/elementaryFunctions/log/Makefile.in +++ b/src/elementaryFunctions/log/Makefile.in @@ -247,10 +247,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/auxiliaryFunctions/pythag/libPythag.la \ @LIBMATH@ -testFloatLog_SOURCES = testFloatLog.c +testFloatLog_SOURCES = testLog.h testFloatLog.c testFloatLog_CFLAGS = $(check_INCLUDES) testFloatLog_LDADD = $(check_LDADD) -testDoubleLog_SOURCES = testDoubleLog.c +testDoubleLog_SOURCES = testLog.h testDoubleLog.c testDoubleLog_CFLAGS = $(check_INCLUDES) testDoubleLog_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/log10/Makefile.am b/src/elementaryFunctions/log10/Makefile.am index b1a05685..88b45bee 100644 --- a/src/elementaryFunctions/log10/Makefile.am +++ b/src/elementaryFunctions/log10/Makefile.am @@ -56,10 +56,10 @@ TESTS = testFloatLog10 testDoubleLog10 # # -*- 10-Base Logarithm Tests -*- # -testFloatLog10_SOURCES = testFloatLog10.c +testFloatLog10_SOURCES = testLog10.h testFloatLog10.c testFloatLog10_CFLAGS = $(check_INCLUDES) testFloatLog10_LDADD = $(check_LDADD) -testDoubleLog10_SOURCES = testDoubleLog10.c +testDoubleLog10_SOURCES = testLog10.h testDoubleLog10.c testDoubleLog10_CFLAGS = $(check_INCLUDES) testDoubleLog10_LDADD = $(check_LDADD)
\ No newline at end of file diff --git a/src/elementaryFunctions/log10/Makefile.in b/src/elementaryFunctions/log10/Makefile.in index b2bfebbd..2e3d48fb 100644 --- a/src/elementaryFunctions/log10/Makefile.in +++ b/src/elementaryFunctions/log10/Makefile.in @@ -254,10 +254,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ # # -*- 10-Base Logarithm Tests -*- # -testFloatLog10_SOURCES = testFloatLog10.c +testFloatLog10_SOURCES = testLog10.h testFloatLog10.c testFloatLog10_CFLAGS = $(check_INCLUDES) testFloatLog10_LDADD = $(check_LDADD) -testDoubleLog10_SOURCES = testDoubleLog10.c +testDoubleLog10_SOURCES = testLog10.h testDoubleLog10.c testDoubleLog10_CFLAGS = $(check_INCLUDES) testDoubleLog10_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/log1p/Makefile.am b/src/elementaryFunctions/log1p/Makefile.am index 660c2917..20bca10a 100644 --- a/src/elementaryFunctions/log1p/Makefile.am +++ b/src/elementaryFunctions/log1p/Makefile.am @@ -55,10 +55,10 @@ TESTS = testFloatLog1p testDoubleLog1p # # -*- Log1p Tests -*- # -testFloatLog1p_SOURCES = testFloatLog1p.c +testFloatLog1p_SOURCES = testLog1p.h testFloatLog1p.c testFloatLog1p_CFLAGS = $(check_INCLUDES) testFloatLog1p_LDADD = $(check_LDADD) -testDoubleLog1p_SOURCES = testDoubleLog1p.c +testDoubleLog1p_SOURCES = testLog1p.h testDoubleLog1p.c testDoubleLog1p_CFLAGS = $(check_INCLUDES) testDoubleLog1p_LDADD = $(check_LDADD)
\ No newline at end of file diff --git a/src/elementaryFunctions/log1p/Makefile.in b/src/elementaryFunctions/log1p/Makefile.in index 8242b6c5..72d0a3a4 100644 --- a/src/elementaryFunctions/log1p/Makefile.in +++ b/src/elementaryFunctions/log1p/Makefile.in @@ -252,10 +252,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ # # -*- Log1p Tests -*- # -testFloatLog1p_SOURCES = testFloatLog1p.c +testFloatLog1p_SOURCES = testLog1p.h testFloatLog1p.c testFloatLog1p_CFLAGS = $(check_INCLUDES) testFloatLog1p_LDADD = $(check_LDADD) -testDoubleLog1p_SOURCES = testDoubleLog1p.c +testDoubleLog1p_SOURCES = testLog1p.h testDoubleLog1p.c testDoubleLog1p_CFLAGS = $(check_INCLUDES) testDoubleLog1p_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/pow/Makefile.am b/src/elementaryFunctions/pow/Makefile.am index 8cc7536d..d16c8610 100644 --- a/src/elementaryFunctions/pow/Makefile.am +++ b/src/elementaryFunctions/pow/Makefile.am @@ -58,10 +58,10 @@ check_PROGRAMS = testFloatPow testDoublePow TESTS = testFloatPow testDoublePow -testFloatPow_SOURCES = testFloatPow.c +testFloatPow_SOURCES = testPow.h testFloatPow.c testFloatPow_CFLAGS = $(check_INCLUDES) testFloatPow_LDADD = $(check_LDADD) -testDoublePow_SOURCES = testDoublePow.c +testDoublePow_SOURCES = testPow.h testDoublePow.c testDoublePow_CFLAGS = $(check_INCLUDES) testDoublePow_LDADD = $(check_LDADD) diff --git a/src/elementaryFunctions/pow/Makefile.in b/src/elementaryFunctions/pow/Makefile.in index dc69942f..38a2e208 100644 --- a/src/elementaryFunctions/pow/Makefile.in +++ b/src/elementaryFunctions/pow/Makefile.in @@ -258,10 +258,10 @@ check_LDADD = $(top_builddir)/lib/lapack/libscilapack.la \ $(top_builddir)/auxiliaryFunctions/abs/libAbs.la \ @LIBMATH@ -testFloatPow_SOURCES = testFloatPow.c +testFloatPow_SOURCES = testPow.h testFloatPow.c testFloatPow_CFLAGS = $(check_INCLUDES) testFloatPow_LDADD = $(check_LDADD) -testDoublePow_SOURCES = testDoublePow.c +testDoublePow_SOURCES = testPow.h testDoublePow.c testDoublePow_CFLAGS = $(check_INCLUDES) testDoublePow_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/sin/Makefile.am b/src/elementaryFunctions/sin/Makefile.am index 9ade668f..7baccc45 100644 --- a/src/elementaryFunctions/sin/Makefile.am +++ b/src/elementaryFunctions/sin/Makefile.am @@ -57,10 +57,10 @@ TESTS = testFloatSin testDoubleSin # # -*- Sine Tests -*- # -testFloatSin_SOURCES = testFloatSin.c +testFloatSin_SOURCES = testSin.h testFloatSin.c testFloatSin_CFLAGS = $(check_INCLUDES) testFloatSin_LDADD = $(check_LDADD) -testDoubleSin_SOURCES = testDoubleSin.c +testDoubleSin_SOURCES = testSin.h testDoubleSin.c testDoubleSin_CFLAGS = $(check_INCLUDES) testDoubleSin_LDADD = $(check_LDADD) diff --git a/src/elementaryFunctions/sin/Makefile.in b/src/elementaryFunctions/sin/Makefile.in index a5dc06d7..f3bd81cd 100644 --- a/src/elementaryFunctions/sin/Makefile.in +++ b/src/elementaryFunctions/sin/Makefile.in @@ -254,10 +254,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ # # -*- Sine Tests -*- # -testFloatSin_SOURCES = testFloatSin.c +testFloatSin_SOURCES = testSin.h testFloatSin.c testFloatSin_CFLAGS = $(check_INCLUDES) testFloatSin_LDADD = $(check_LDADD) -testDoubleSin_SOURCES = testDoubleSin.c +testDoubleSin_SOURCES = testSin.h testDoubleSin.c testDoubleSin_CFLAGS = $(check_INCLUDES) testDoubleSin_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/sinh/Makefile.am b/src/elementaryFunctions/sinh/Makefile.am index 7084f8c6..196d8c5d 100644 --- a/src/elementaryFunctions/sinh/Makefile.am +++ b/src/elementaryFunctions/sinh/Makefile.am @@ -57,10 +57,10 @@ TESTS = testFloatSinh testDoubleSinh # # -*- Hyperbolic Sine Tests -*- # -testFloatSinh_SOURCES = testFloatSinh.c +testFloatSinh_SOURCES = testSinh.h testFloatSinh.c testFloatSinh_CFLAGS = $(check_INCLUDES) testFloatSinh_LDADD = $(check_LDADD) -testDoubleSinh_SOURCES = testDoubleSinh.c +testDoubleSinh_SOURCES = testSinh.h testDoubleSinh.c testDoubleSinh_CFLAGS = $(check_INCLUDES) testDoubleSinh_LDADD = $(check_LDADD) diff --git a/src/elementaryFunctions/sinh/Makefile.in b/src/elementaryFunctions/sinh/Makefile.in index a7069754..ebf0aee4 100644 --- a/src/elementaryFunctions/sinh/Makefile.in +++ b/src/elementaryFunctions/sinh/Makefile.in @@ -254,10 +254,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ # # -*- Hyperbolic Sine Tests -*- # -testFloatSinh_SOURCES = testFloatSinh.c +testFloatSinh_SOURCES = testSinh.h testFloatSinh.c testFloatSinh_CFLAGS = $(check_INCLUDES) testFloatSinh_LDADD = $(check_LDADD) -testDoubleSinh_SOURCES = testDoubleSinh.c +testDoubleSinh_SOURCES = testSinh.h testDoubleSinh.c testDoubleSinh_CFLAGS = $(check_INCLUDES) testDoubleSinh_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/sqrt/Makefile.am b/src/elementaryFunctions/sqrt/Makefile.am index 6bd9e6d5..d5e16937 100644 --- a/src/elementaryFunctions/sqrt/Makefile.am +++ b/src/elementaryFunctions/sqrt/Makefile.am @@ -53,10 +53,10 @@ TESTS = testFloatSqrt testDoubleSqrt # # -*- Square Root Tests -*- # -testFloatSqrt_SOURCES = testFloatSqrt.c +testFloatSqrt_SOURCES = testSqrt.h testFloatSqrt.c testFloatSqrt_CFLAGS = $(check_INCLUDES) testFloatSqrt_LDADD = $(check_LDADD) -testDoubleSqrt_SOURCES = testDoubleSqrt.c +testDoubleSqrt_SOURCES = testSqrt.h testDoubleSqrt.c testDoubleSqrt_CFLAGS = $(check_INCLUDES) testDoubleSqrt_LDADD = $(check_LDADD) diff --git a/src/elementaryFunctions/sqrt/Makefile.in b/src/elementaryFunctions/sqrt/Makefile.in index 11f6e142..1d427a3a 100644 --- a/src/elementaryFunctions/sqrt/Makefile.in +++ b/src/elementaryFunctions/sqrt/Makefile.in @@ -245,10 +245,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ # # -*- Square Root Tests -*- # -testFloatSqrt_SOURCES = testFloatSqrt.c +testFloatSqrt_SOURCES = testSqrt.h testFloatSqrt.c testFloatSqrt_CFLAGS = $(check_INCLUDES) testFloatSqrt_LDADD = $(check_LDADD) -testDoubleSqrt_SOURCES = testDoubleSqrt.c +testDoubleSqrt_SOURCES = testSqrt.h testDoubleSqrt.c testDoubleSqrt_CFLAGS = $(check_INCLUDES) testDoubleSqrt_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/tan/Makefile.am b/src/elementaryFunctions/tan/Makefile.am index f764a99c..0a5b64c9 100644 --- a/src/elementaryFunctions/tan/Makefile.am +++ b/src/elementaryFunctions/tan/Makefile.am @@ -62,10 +62,10 @@ TESTS = testFloatTan testDoubleTan # # -*- Tangeant Tests -*- # -testFloatTan_SOURCES = testFloatTan.c +testFloatTan_SOURCES = testTan.h testFloatTan.c testFloatTan_CFLAGS = $(check_INCLUDES) -g testFloatTan_LDADD = $(check_LDADD) -testDoubleTan_SOURCES = testDoubleTan.c +testDoubleTan_SOURCES = testTan.h testDoubleTan.c testDoubleTan_CFLAGS = $(check_INCLUDES) -g testDoubleTan_LDADD = $(check_LDADD) diff --git a/src/elementaryFunctions/tan/Makefile.in b/src/elementaryFunctions/tan/Makefile.in index cea9e921..d6f60724 100644 --- a/src/elementaryFunctions/tan/Makefile.in +++ b/src/elementaryFunctions/tan/Makefile.in @@ -263,10 +263,10 @@ check_LDADD = $(top_builddir)/lib/lapack/libscilapack.la \ # # -*- Tangeant Tests -*- # -testFloatTan_SOURCES = testFloatTan.c +testFloatTan_SOURCES = testTan.h testFloatTan.c testFloatTan_CFLAGS = $(check_INCLUDES) -g testFloatTan_LDADD = $(check_LDADD) -testDoubleTan_SOURCES = testDoubleTan.c +testDoubleTan_SOURCES = testTan.h testDoubleTan.c testDoubleTan_CFLAGS = $(check_INCLUDES) -g testDoubleTan_LDADD = $(check_LDADD) all: all-am diff --git a/src/elementaryFunctions/tanh/Makefile.am b/src/elementaryFunctions/tanh/Makefile.am index d0bb409c..d7ea232a 100644 --- a/src/elementaryFunctions/tanh/Makefile.am +++ b/src/elementaryFunctions/tanh/Makefile.am @@ -62,10 +62,10 @@ TESTS = testFloatTanh testDoubleTanh # # -*- Hyperbolic Tangeant Tests -*- # -testFloatTanh_SOURCES = testFloatTanh.c +testFloatTanh_SOURCES = testTanh.h testFloatTanh.c testFloatTanh_CFLAGS = $(check_INCLUDES) testFloatTanh_LDADD = $(check_LDADD) -testDoubleTanh_SOURCES = testDoubleTanh.c +testDoubleTanh_SOURCES = testTanh.h testDoubleTanh.c testDoubleTanh_CFLAGS = $(check_INCLUDES) testDoubleTanh_LDADD = $(check_LDADD)
\ No newline at end of file diff --git a/src/elementaryFunctions/tanh/Makefile.in b/src/elementaryFunctions/tanh/Makefile.in index 39c7ad55..51539795 100644 --- a/src/elementaryFunctions/tanh/Makefile.in +++ b/src/elementaryFunctions/tanh/Makefile.in @@ -264,10 +264,10 @@ check_LDADD = $(top_builddir)/lib/lapack/libscilapack.la \ # # -*- Hyperbolic Tangeant Tests -*- # -testFloatTanh_SOURCES = testFloatTanh.c +testFloatTanh_SOURCES = testTanh.h testFloatTanh.c testFloatTanh_CFLAGS = $(check_INCLUDES) testFloatTanh_LDADD = $(check_LDADD) -testDoubleTanh_SOURCES = testDoubleTanh.c +testDoubleTanh_SOURCES = testTanh.h testDoubleTanh.c testDoubleTanh_CFLAGS = $(check_INCLUDES) testDoubleTanh_LDADD = $(check_LDADD) all: all-am |