diff options
author | jofret | 2007-04-23 15:30:12 +0000 |
---|---|---|
committer | jofret | 2007-04-23 15:30:12 +0000 |
commit | c9f4aeec27c6c9c3a0fa9ab8c1a6132b506f6814 (patch) | |
tree | 239e3603da0dbbf456fcefe397f84fa4c41b8af9 /src/auxiliaryFunctions/pythag/Makefile.am | |
parent | 4a2c219771f55d20bc6b034a7cfa078e4c92b6c3 (diff) | |
download | scilab2c-c9f4aeec27c6c9c3a0fa9ab8c1a6132b506f6814.tar.gz scilab2c-c9f4aeec27c6c9c3a0fa9ab8c1a6132b506f6814.tar.bz2 scilab2c-c9f4aeec27c6c9c3a0fa9ab8c1a6132b506f6814.zip |
Adding Pythag function, must be used as often as possible.
Diffstat (limited to 'src/auxiliaryFunctions/pythag/Makefile.am')
-rw-r--r-- | src/auxiliaryFunctions/pythag/Makefile.am | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/auxiliaryFunctions/pythag/Makefile.am b/src/auxiliaryFunctions/pythag/Makefile.am new file mode 100644 index 00000000..2597abe4 --- /dev/null +++ b/src/auxiliaryFunctions/pythag/Makefile.am @@ -0,0 +1,47 @@ +## +## -*- makefile -*- +## +## Makefile +## Made by Bruno JOFRET <bruno.jofret@inria.fr> +## +## Started on Fri Jan 5 10:19:16 2007 jofret +## Last update Mon Apr 23 15:43:36 2007 jofret +## +## Copyright INRIA 2007 +## + +AM_CFLAGS = -I ../../type \ + -I ../includes \ + -I ../../elementaryFunctions/includes + +instdir = $(top_builddir)/lib + +inst_LIBRARIES = libPythag.a + +noinst_LIBRARIES = libPythag.a + +libPythag_a_SOURCES = $(HEAD) $(SRC) + +SRC = spythags.c \ + dpythags.c + +HEAD = ../includes/pythag.h + +#### +# Checking Part +#### + +check_INCLUDES = -I $(top_builddir)/elementaryFunctions/includes \ + -I $(top_builddir)/type + +check_PROGRAMS = testPythag + +TESTS = testPythag + +# +# -*- Pythag Tests -*- +# +testPythag_SOURCES = testPythag.c +testPythag_CFLAGS = $(check_INCLUDES) +testPythag_LDADD = $(top_builddir)/lib/libPythag.a \ + @LIBMATH@ |