diff options
author | jofret | 2008-05-23 12:48:40 +0000 |
---|---|---|
committer | jofret | 2008-05-23 12:48:40 +0000 |
commit | c2ecdb02caea4e06e40cc7f08456a13927819def (patch) | |
tree | 20d238b8ad67f026deccc1d8773275c89e9fe998 | |
parent | 89c39cd3cac6b574600f8aa3c24daf97c30a69c5 (diff) | |
download | scilab2c-c2ecdb02caea4e06e40cc7f08456a13927819def.tar.gz scilab2c-c2ecdb02caea4e06e40cc7f08456a13927819def.tar.bz2 scilab2c-c2ecdb02caea4e06e40cc7f08456a13927819def.zip |
Correct dependancies
-rw-r--r-- | src/elementaryFunctions/exp10/Makefile.am | 3 | ||||
-rw-r--r-- | src/elementaryFunctions/exp10/Makefile.in | 8 | ||||
-rw-r--r-- | src/elementaryFunctions/exp10/cexp10a.c | 20 | ||||
-rw-r--r-- | src/elementaryFunctions/exp10/cexp10s.c | 20 | ||||
-rw-r--r-- | src/elementaryFunctions/exp10/dexp10a.c | 20 | ||||
-rw-r--r-- | src/elementaryFunctions/exp10/dexp10s.c | 20 | ||||
-rw-r--r-- | src/elementaryFunctions/exp10/sexp10a.c | 20 | ||||
-rw-r--r-- | src/elementaryFunctions/exp10/testExp10.h | 20 | ||||
-rw-r--r-- | src/elementaryFunctions/exp10/zexp10a.c | 20 | ||||
-rw-r--r-- | src/elementaryFunctions/exp10/zexp10s.c | 20 |
10 files changed, 90 insertions, 81 deletions
diff --git a/src/elementaryFunctions/exp10/Makefile.am b/src/elementaryFunctions/exp10/Makefile.am index 798b1955..f758817d 100644 --- a/src/elementaryFunctions/exp10/Makefile.am +++ b/src/elementaryFunctions/exp10/Makefile.am @@ -44,6 +44,9 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/elementaryFunctions/cosh/libCosh.la \ $(top_builddir)/elementaryFunctions/sinh/libSinh.la \ $(top_builddir)/elementaryFunctions/exp10/libExp10.la \ + $(top_builddir)/elementaryFunctions/exp/libExp.la \ + $(top_builddir)/elementaryFunctions/sqrt/libSqrt.la \ + $(top_builddir)/auxiliaryFunctions/abs/libAbs.la \ @LIBMATH@ check_PROGRAMS = testFloatExp10 testDoubleExp10 diff --git a/src/elementaryFunctions/exp10/Makefile.in b/src/elementaryFunctions/exp10/Makefile.in index ccb3b144..917d5397 100644 --- a/src/elementaryFunctions/exp10/Makefile.in +++ b/src/elementaryFunctions/exp10/Makefile.in @@ -72,7 +72,10 @@ am__DEPENDENCIES_1 = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/elementaryFunctions/sin/libSin.la \ $(top_builddir)/elementaryFunctions/cosh/libCosh.la \ $(top_builddir)/elementaryFunctions/sinh/libSinh.la \ - $(top_builddir)/elementaryFunctions/exp10/libExp10.la + $(top_builddir)/elementaryFunctions/exp10/libExp10.la \ + $(top_builddir)/elementaryFunctions/exp/libExp.la \ + $(top_builddir)/elementaryFunctions/sqrt/libSqrt.la \ + $(top_builddir)/auxiliaryFunctions/abs/libAbs.la testDoubleExp10_DEPENDENCIES = $(am__DEPENDENCIES_1) testDoubleExp10_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(testDoubleExp10_CFLAGS) \ @@ -242,6 +245,9 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/elementaryFunctions/cosh/libCosh.la \ $(top_builddir)/elementaryFunctions/sinh/libSinh.la \ $(top_builddir)/elementaryFunctions/exp10/libExp10.la \ + $(top_builddir)/elementaryFunctions/exp/libExp.la \ + $(top_builddir)/elementaryFunctions/sqrt/libSqrt.la \ + $(top_builddir)/auxiliaryFunctions/abs/libAbs.la \ @LIBMATH@ testFloatExp10_SOURCES = testFloatExp10.c diff --git a/src/elementaryFunctions/exp10/cexp10a.c b/src/elementaryFunctions/exp10/cexp10a.c index a1245ffb..6245c801 100644 --- a/src/elementaryFunctions/exp10/cexp10a.c +++ b/src/elementaryFunctions/exp10/cexp10a.c @@ -1,14 +1,14 @@ /* -** -*- C -*- -** -** cexp10a.c -** Made by Bruno JOFRET <bruno.jofret@inria.fr> -** -** Started on Thu Dec 7 14:54:24 2006 jofret -** Last update Mon Oct 22 09:54:11 2007 bruno -** -** Copyright INRIA 2006 -*/ + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ #include "exp10.h" diff --git a/src/elementaryFunctions/exp10/cexp10s.c b/src/elementaryFunctions/exp10/cexp10s.c index 615d9fa4..340e3f4c 100644 --- a/src/elementaryFunctions/exp10/cexp10s.c +++ b/src/elementaryFunctions/exp10/cexp10s.c @@ -1,14 +1,14 @@ /* -** -*- C -*- -** -** cexp10s.c -** Made by Bruno JOFRET <bruno.jofret@inria.fr> -** -** Started on Thu Dec 7 12:04:28 2006 jofret -** Last update Thu Sep 6 17:09:51 2007 bruno -** -** Copyright INRIA 2006 -*/ + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ #include "exp10.h" diff --git a/src/elementaryFunctions/exp10/dexp10a.c b/src/elementaryFunctions/exp10/dexp10a.c index 270abc53..137754d8 100644 --- a/src/elementaryFunctions/exp10/dexp10a.c +++ b/src/elementaryFunctions/exp10/dexp10a.c @@ -1,14 +1,14 @@ /* -** -*- C -*- -** -** dexp10a.c -** Made by Bruno JOFRET <bruno.jofret@inria.fr> -** -** Started on Thu Dec 7 14:54:56 2006 jofret -** Last update Mon Oct 22 09:53:56 2007 bruno -** -** Copyright INRIA 2006 -*/ + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ #include "exp10.h" diff --git a/src/elementaryFunctions/exp10/dexp10s.c b/src/elementaryFunctions/exp10/dexp10s.c index eb77f952..29ae40fe 100644 --- a/src/elementaryFunctions/exp10/dexp10s.c +++ b/src/elementaryFunctions/exp10/dexp10s.c @@ -1,14 +1,14 @@ /* -** -*- C -*- -** -** dexp10s.c -** Made by Bruno JOFRET <bruno.jofret@inria.fr> -** -** Started on Thu Dec 7 12:02:41 2006 jofret -** Last update Thu Sep 6 17:09:19 2007 bruno -** -** Copyright INRIA 2006 -*/ + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ #include <math.h> #include "exp10.h" diff --git a/src/elementaryFunctions/exp10/sexp10a.c b/src/elementaryFunctions/exp10/sexp10a.c index 259661dd..aa6cc0eb 100644 --- a/src/elementaryFunctions/exp10/sexp10a.c +++ b/src/elementaryFunctions/exp10/sexp10a.c @@ -1,14 +1,14 @@ /* -** -*- C -*- -** -** sexp10a.c -** Made by Bruno JOFRET <bruno.jofret@inria.fr> -** -** Started on Thu Dec 7 16:03:27 2006 jofret -** Last update Mon Oct 22 09:53:46 2007 bruno -** -** Copyright INRIA 2006 -*/ + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ #include "exp10.h" diff --git a/src/elementaryFunctions/exp10/testExp10.h b/src/elementaryFunctions/exp10/testExp10.h index 9dbb749a..34a04725 100644 --- a/src/elementaryFunctions/exp10/testExp10.h +++ b/src/elementaryFunctions/exp10/testExp10.h @@ -1,14 +1,14 @@ /* -** -*- C -*- -** -** testExp10.h -** Made by Bruno JOFRET <bruno.jofret@inria.fr> -** -** Started on Wed Apr 18 17:07:03 2007 jofret -** Last update Thu Sep 6 16:56:09 2007 bruno -** -** Copyright INRIA 2007 -*/ + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2007-2008 - INRIA - Bruno JOFRET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ #ifndef _TESTEXP10_H_ #define _TESTEXP10_H_ diff --git a/src/elementaryFunctions/exp10/zexp10a.c b/src/elementaryFunctions/exp10/zexp10a.c index 1ce8bb1c..10413355 100644 --- a/src/elementaryFunctions/exp10/zexp10a.c +++ b/src/elementaryFunctions/exp10/zexp10a.c @@ -1,14 +1,14 @@ /* -** -*- C -*- -** -** zexp10a.c -** Made by Bruno JOFRET <bruno.jofret@inria.fr> -** -** Started on Thu Dec 7 16:12:02 2006 jofret -** Last update Mon Oct 22 09:53:37 2007 bruno -** -** Copyright INRIA 2006 -*/ + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ #include "exp10.h" diff --git a/src/elementaryFunctions/exp10/zexp10s.c b/src/elementaryFunctions/exp10/zexp10s.c index 55a88cff..ef0aba8d 100644 --- a/src/elementaryFunctions/exp10/zexp10s.c +++ b/src/elementaryFunctions/exp10/zexp10s.c @@ -1,14 +1,14 @@ /* -** -*- C -*- -** -** zexp10s.c -** Made by Bruno JOFRET <bruno.jofret@inria.fr> -** -** Started on Thu Dec 7 12:05:48 2006 jofret -** Last update Thu Sep 6 16:56:19 2007 bruno -** -** Copyright INRIA 2006 -*/ + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ #include "exp10.h" #include "cos.h" |