From f32589693c578961c3e3b0bcd2053ec1d238b70d Mon Sep 17 00:00:00 2001 From: jofret Date: Fri, 18 Apr 2008 09:22:02 +0000 Subject: Double vs Float better management. Enable psycho warnings. --- src/elementaryFunctions/acos/Makefile.am | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) (limited to 'src/elementaryFunctions/acos/Makefile.am') 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) -- cgit