diff options
author | jofret | 2008-04-18 09:22:02 +0000 |
---|---|---|
committer | jofret | 2008-04-18 09:22:02 +0000 |
commit | f32589693c578961c3e3b0bcd2053ec1d238b70d (patch) | |
tree | c389b8e88329053c85b6a55869fdd309d9462d34 /src/elementaryFunctions/acos/Makefile.am | |
parent | ab5ac1b2a3c2c07921aa994dee775ec8e679c447 (diff) | |
download | scilab2c-f32589693c578961c3e3b0bcd2053ec1d238b70d.tar.gz scilab2c-f32589693c578961c3e3b0bcd2053ec1d238b70d.tar.bz2 scilab2c-f32589693c578961c3e3b0bcd2053ec1d238b70d.zip |
Double vs Float better management. Enable psycho warnings.
Diffstat (limited to 'src/elementaryFunctions/acos/Makefile.am')
-rw-r--r-- | src/elementaryFunctions/acos/Makefile.am | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/src/elementaryFunctions/acos/Makefile.am b/src/elementaryFunctions/acos/Makefile.am index b5c6e22b..c6e2a4e4 100644 --- a/src/elementaryFunctions/acos/Makefile.am +++ b/src/elementaryFunctions/acos/Makefile.am @@ -37,16 +37,22 @@ HEAD = ../includes/acos.h check_INCLUDES = -I $(top_builddir)/elementaryFunctions/includes \ -I $(top_builddir)/type -check_PROGRAMS = testAcos +check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ + $(top_builddir)/type/libFloatComplex.la \ + $(top_builddir)/elementaryFunctions/acos/libAcos.la \ + @LIBMATH@ + +check_PROGRAMS = testFloatAcos testDoubleAcos -TESTS = testAcos +TESTS = testFloatAcos testDoubleAcos # # -*- Acosine Tests -*- # -testAcos_SOURCES = testAcos.c -testAcos_CFLAGS = $(check_INCLUDES) -testAcos_LDADD = $(top_builddir)/type/libDoubleComplex.la \ - $(top_builddir)/type/libFloatComplex.la \ - $(top_builddir)/elementaryFunctions/acos/libAcos.la \ - @LIBMATH@
\ No newline at end of file +testFloatAcos_SOURCES = testFloatAcos.c +testFloatAcos_CFLAGS = $(check_INCLUDES) +testFloatAcos_LDADD = $(check_LDADD) + +testDoubleAcos_SOURCES = testDoubleAcos.c +testDoubleAcos_CFLAGS = $(check_INCLUDES) +testDoubleAcos_LDADD = $(check_LDADD) |