diff options
Diffstat (limited to 'src/elementaryFunctions/acos/Makefile.am')
-rw-r--r-- | src/elementaryFunctions/acos/Makefile.am | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/elementaryFunctions/acos/Makefile.am b/src/elementaryFunctions/acos/Makefile.am index 6d62772d..51b7756f 100644 --- a/src/elementaryFunctions/acos/Makefile.am +++ b/src/elementaryFunctions/acos/Makefile.am @@ -56,17 +56,18 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/operations/multiplication/libMultiplication.la \ @LIBMATH@ -check_PROGRAMS = testFloatAcos testDoubleAcos +check_PROGRAMS = testRealsAcos testCplxAcos -TESTS = testFloatAcos testDoubleAcos +TESTS = testRealsAcos testCplxAcos # # -*- Acosine Tests -*- # -testFloatAcos_SOURCES = testAcos.h testFloatAcos.c -testFloatAcos_CFLAGS = $(check_INCLUDES) -testFloatAcos_LDADD = $(check_LDADD) +testRealsAcos_SOURCES = testAcos.h testRealsAcos.c +testRealsAcos_CFLAGS = $(check_INCLUDES) +testRealsAcos_LDADD = $(check_LDADD) + +testCplxAcos_SOURCES = testAcos.h testCplxAcos.c +testCplxAcos_CFLAGS = $(check_INCLUDES) +testCplxAcos_LDADD = $(check_LDADD) -testDoubleAcos_SOURCES = testAcos.h testDoubleAcos.c -testDoubleAcos_CFLAGS = $(check_INCLUDES) -testDoubleAcos_LDADD = $(check_LDADD) |