diff options
author | jofret | 2007-04-20 08:46:13 +0000 |
---|---|---|
committer | jofret | 2007-04-20 08:46:13 +0000 |
commit | 6faf9cc3c16557c5dbfa4f096b6b34f594fe1fd0 (patch) | |
tree | 06433d6a68acb81fdd7233bfb356d51cd39d4ff5 /src/elementaryFunctions/sin/Makefile.am | |
parent | 1f59e1352536bce4c7a9b30a81c84a219efdfe1f (diff) | |
download | scilab2c-6faf9cc3c16557c5dbfa4f096b6b34f594fe1fd0.tar.gz scilab2c-6faf9cc3c16557c5dbfa4f096b6b34f594fe1fd0.tar.bz2 scilab2c-6faf9cc3c16557c5dbfa4f096b6b34f594fe1fd0.zip |
Adding Automated tests.
Diffstat (limited to 'src/elementaryFunctions/sin/Makefile.am')
-rw-r--r-- | src/elementaryFunctions/sin/Makefile.am | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/src/elementaryFunctions/sin/Makefile.am b/src/elementaryFunctions/sin/Makefile.am index 8efd6ab1..8bc00b9f 100644 --- a/src/elementaryFunctions/sin/Makefile.am +++ b/src/elementaryFunctions/sin/Makefile.am @@ -5,7 +5,7 @@ ## Made by Bruno JOFRET <bruno.jofret@inria.fr> ## ## Started on Fri Jan 5 10:19:16 2007 jofret -## Last update Sun Mar 25 20:57:34 2007 bruno +## Last update Wed Apr 18 16:50:03 2007 jofret ## ## Copyright INRIA 2007 ## @@ -31,3 +31,24 @@ SRC = ssins.c \ zsina.c HEAD = ../includes/sin.h + +#### +# Checking Part +#### + +check_INCLUDES = -I $(top_builddir)/elementaryFunctions/includes \ + -I $(top_builddir)/type + +check_PROGRAMS = testSin + +TESTS = testSin + +# +# -*- Sine Tests -*- +# +testSin_SOURCES = testSin.c +testSin_CFLAGS = $(check_INCLUDES) +testSin_LDADD = $(top_builddir)/lib/libDoubleComplex.a \ + $(top_builddir)/lib/libFloatComplex.a \ + $(top_builddir)/lib/libSin.a \ + @LIBMATH@ |