diff options
author | jofret | 2008-05-27 12:43:36 +0000 |
---|---|---|
committer | jofret | 2008-05-27 12:43:36 +0000 |
commit | 8c654c426447df199f8421841c9b3a0352edcfdf (patch) | |
tree | 09d5be5fef7517f01b24b9bdd8ff2c0746ef044d /src | |
parent | 33f514c90a403292143be61a6c04e7f548be95a3 (diff) | |
download | scilab2c-8c654c426447df199f8421841c9b3a0352edcfdf.tar.gz scilab2c-8c654c426447df199f8421841c9b3a0352edcfdf.tar.bz2 scilab2c-8c654c426447df199f8421841c9b3a0352edcfdf.zip |
Correct sqrt dependancies
Diffstat (limited to 'src')
-rw-r--r-- | src/elementaryFunctions/atan/Makefile.am | 1 | ||||
-rw-r--r-- | src/elementaryFunctions/atan/Makefile.in | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/elementaryFunctions/atan/Makefile.am b/src/elementaryFunctions/atan/Makefile.am index 6cb99381..9a629198 100644 --- a/src/elementaryFunctions/atan/Makefile.am +++ b/src/elementaryFunctions/atan/Makefile.am @@ -46,6 +46,7 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/elementaryFunctions/atan/libAtan.la \ $(top_builddir)/elementaryFunctions/lnp1m1/libLnp1m1.la \ $(top_builddir)/auxiliaryFunctions/abs/libAbs.la \ + $(top_builddir)/auxiliaryFunctions/pythag/libPythag.la \ @LIBMATH@ check_PROGRAMS = testFloatAtan testDoubleAtan diff --git a/src/elementaryFunctions/atan/Makefile.in b/src/elementaryFunctions/atan/Makefile.in index 801ff2ff..beb7b819 100644 --- a/src/elementaryFunctions/atan/Makefile.in +++ b/src/elementaryFunctions/atan/Makefile.in @@ -70,7 +70,8 @@ am__DEPENDENCIES_1 = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/elementaryFunctions/sqrt/libSqrt.la \ $(top_builddir)/elementaryFunctions/atan/libAtan.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 testDoubleAtan_DEPENDENCIES = $(am__DEPENDENCIES_1) testDoubleAtan_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(testDoubleAtan_CFLAGS) \ @@ -241,6 +242,7 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/elementaryFunctions/atan/libAtan.la \ $(top_builddir)/elementaryFunctions/lnp1m1/libLnp1m1.la \ $(top_builddir)/auxiliaryFunctions/abs/libAbs.la \ + $(top_builddir)/auxiliaryFunctions/pythag/libPythag.la \ @LIBMATH@ |