diff options
author | jofret | 2008-05-27 12:44:24 +0000 |
---|---|---|
committer | jofret | 2008-05-27 12:44:24 +0000 |
commit | 506a3fd9833f8034fb3a349c6df994bd35a9eeb0 (patch) | |
tree | c12e8e31201cd7b4e39ecc20f56c6160d6414637 /src | |
parent | 8c654c426447df199f8421841c9b3a0352edcfdf (diff) | |
download | scilab2c-506a3fd9833f8034fb3a349c6df994bd35a9eeb0.tar.gz scilab2c-506a3fd9833f8034fb3a349c6df994bd35a9eeb0.tar.bz2 scilab2c-506a3fd9833f8034fb3a349c6df994bd35a9eeb0.zip |
Correct sqrt dependancies
Diffstat (limited to 'src')
-rw-r--r-- | src/elementaryFunctions/atanh/Makefile.am | 1 | ||||
-rw-r--r-- | src/elementaryFunctions/atanh/Makefile.in | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/elementaryFunctions/atanh/Makefile.am b/src/elementaryFunctions/atanh/Makefile.am index b326e4c3..99b6a16c 100644 --- a/src/elementaryFunctions/atanh/Makefile.am +++ b/src/elementaryFunctions/atanh/Makefile.am @@ -45,6 +45,7 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/elementaryFunctions/atanh/libAtanh.la \ $(top_builddir)/elementaryFunctions/lnp1m1/libLnp1m1.la \ $(top_builddir)/auxiliaryFunctions/abs/libAbs.la \ + $(top_builddir)/auxiliaryFunctions/pythag/libPythag.la \ @LIBMATH@ check_PROGRAMS = testFloatAtanh testDoubleAtanh diff --git a/src/elementaryFunctions/atanh/Makefile.in b/src/elementaryFunctions/atanh/Makefile.in index 02df08b5..0087bd0e 100644 --- a/src/elementaryFunctions/atanh/Makefile.in +++ b/src/elementaryFunctions/atanh/Makefile.in @@ -73,7 +73,8 @@ am__DEPENDENCIES_1 = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/elementaryFunctions/sqrt/libSqrt.la \ $(top_builddir)/elementaryFunctions/atanh/libAtanh.la \ $(top_builddir)/elementaryFunctions/lnp1m1/libLnp1m1.la \ - $(top_builddir)/auxiliaryFunctions/abs/libAbs.la + $(top_builddir)/auxiliaryFunctions/abs/libAbs.la \ + $(top_builddir)/auxiliaryFunctions/pythag/libPythag.la testDoubleAtanh_DEPENDENCIES = $(am__DEPENDENCIES_1) testDoubleAtanh_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(testDoubleAtanh_CFLAGS) \ @@ -244,6 +245,7 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/elementaryFunctions/atanh/libAtanh.la \ $(top_builddir)/elementaryFunctions/lnp1m1/libLnp1m1.la \ $(top_builddir)/auxiliaryFunctions/abs/libAbs.la \ + $(top_builddir)/auxiliaryFunctions/pythag/libPythag.la \ @LIBMATH@ |