diff options
Diffstat (limited to 'src/elementaryFunctions/sqrt/Makefile.am')
-rw-r--r-- | src/elementaryFunctions/sqrt/Makefile.am | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/src/elementaryFunctions/sqrt/Makefile.am b/src/elementaryFunctions/sqrt/Makefile.am index 677a7185..fb8bfba0 100644 --- a/src/elementaryFunctions/sqrt/Makefile.am +++ b/src/elementaryFunctions/sqrt/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:17 2007 bruno +## Last update Fri Apr 20 10:54:14 2007 jofret ## ## Copyright INRIA 2007 ## @@ -31,3 +31,24 @@ SRC = ssqrts.c \ zsqrta.c HEAD = ../includes/sqrt.h + +#### +# Checking Part +#### + +check_INCLUDES = -I $(top_builddir)/elementaryFunctions/includes \ + -I $(top_builddir)/type + +check_PROGRAMS = testSqrt + +TESTS = testSqrt + +# +# -*- Square Root Tests -*- +# +testSqrt_SOURCES = testSqrt.c +testSqrt_CFLAGS = $(check_INCLUDES) +testSqrt_LDADD = $(top_builddir)/lib/libDoubleComplex.a \ + $(top_builddir)/lib/libFloatComplex.a \ + $(top_builddir)/lib/libSqrt.a \ + @LIBMATH@ |