summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/cosh/Makefile.in
diff options
context:
space:
mode:
authorjofret2008-05-21 09:53:06 +0000
committerjofret2008-05-21 09:53:06 +0000
commit4e4209a43336f42f9754b89c4504f30ddd5f1a89 (patch)
treefb685f4619cefdccb9133874d109d030b0e36ea0 /src/elementaryFunctions/cosh/Makefile.in
parent1e61e52ca81e6d1aa988010f8ebcc15b8fb4ad7a (diff)
downloadscilab2c-4e4209a43336f42f9754b89c4504f30ddd5f1a89.tar.gz
scilab2c-4e4209a43336f42f9754b89c4504f30ddd5f1a89.tar.bz2
scilab2c-4e4209a43336f42f9754b89c4504f30ddd5f1a89.zip
* Update COSH algorithm according to Scilab behaviour
* Update Licenses * Update dependencies
Diffstat (limited to 'src/elementaryFunctions/cosh/Makefile.in')
-rw-r--r--src/elementaryFunctions/cosh/Makefile.in13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/elementaryFunctions/cosh/Makefile.in b/src/elementaryFunctions/cosh/Makefile.in
index 787c533f..460ce81a 100644
--- a/src/elementaryFunctions/cosh/Makefile.in
+++ b/src/elementaryFunctions/cosh/Makefile.in
@@ -69,7 +69,10 @@ am__DEPENDENCIES_1 = $(top_builddir)/type/libDoubleComplex.la \
$(top_builddir)/elementaryFunctions/cosh/libCosh.la \
$(top_builddir)/elementaryFunctions/cos/libCos.la \
$(top_builddir)/elementaryFunctions/sinh/libSinh.la \
- $(top_builddir)/elementaryFunctions/sin/libSin.la
+ $(top_builddir)/elementaryFunctions/sin/libSin.la \
+ $(top_builddir)/elementaryFunctions/exp/libExp.la \
+ $(top_builddir)/elementaryFunctions/sqrt/libSqrt.la \
+ $(top_builddir)/auxiliaryFunctions/abs/libAbs.la
testDoubleCosh_DEPENDENCIES = $(am__DEPENDENCIES_1)
testDoubleCosh_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(testDoubleCosh_CFLAGS) \
@@ -209,8 +212,9 @@ sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
-libCosh_la_CFLAGS = -I ../../type \
- -I ../includes
+libCosh_la_CFLAGS = -I $(top_builddir)/type \
+ -I $(top_builddir)/auxiliaryFunctions/includes \
+ -I $(top_builddir)/elementaryFunctions/includes
instdir = $(top_builddir)/lib
pkglib_LTLIBRARIES = libCosh.la
@@ -238,6 +242,9 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \
$(top_builddir)/elementaryFunctions/cos/libCos.la \
$(top_builddir)/elementaryFunctions/sinh/libSinh.la \
$(top_builddir)/elementaryFunctions/sin/libSin.la \
+ $(top_builddir)/elementaryFunctions/exp/libExp.la \
+ $(top_builddir)/elementaryFunctions/sqrt/libSqrt.la \
+ $(top_builddir)/auxiliaryFunctions/abs/libAbs.la \
@LIBMATH@