diff options
Diffstat (limited to 'src/auxiliaryFunctions/abs/Makefile.am')
-rw-r--r-- | src/auxiliaryFunctions/abs/Makefile.am | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/auxiliaryFunctions/abs/Makefile.am b/src/auxiliaryFunctions/abs/Makefile.am new file mode 100644 index 00000000..49ca836a --- /dev/null +++ b/src/auxiliaryFunctions/abs/Makefile.am @@ -0,0 +1,54 @@ +## +## -*- makefile -*- +## +## Makefile +## Made by Bruno JOFRET <bruno.jofret@inria.fr> +## +## Started on Fri Jan 5 10:19:16 2007 jofret +## Last update Fri Apr 20 16:35:05 2007 jofret +## +## Copyright INRIA 2007 +## + +AM_CFLAGS = -I ../../type \ + -I ../includes + +instdir = $(top_builddir)/lib + +inst_LIBRARIES = libAbs.a + +noinst_LIBRARIES = libAbs.a + +libAbs_a_SOURCES = $(HEAD) $(SRC) + +SRC = sabss.c \ + dabss.c \ + cabss.c \ + zabss.c \ + sabsa.c \ + dabsa.c \ + cabsa.c \ + zabsa.c + +HEAD = ../includes/abs.h + +#### +# Checking Part +#### + +check_INCLUDES = -I $(top_builddir)/elementaryFunctions/includes \ + -I $(top_builddir)/type + +check_PROGRAMS = testAbs + +TESTS = testAbs + +# +# -*- Abs Tests -*- +# +testAbs_SOURCES = testAbs.c +testAbs_CFLAGS = $(check_INCLUDES) +testAbs_LDADD = $(top_builddir)/lib/libDoubleComplex.a \ + $(top_builddir)/lib/libFloatComplex.a \ + $(top_builddir)/lib/libAbs.a \ + @LIBMATH@ |