diff options
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@ |