diff options
author | jofret | 2008-05-20 07:26:09 +0000 |
---|---|---|
committer | jofret | 2008-05-20 07:26:09 +0000 |
commit | 54c5df264795ceb76bba56b03cafe01578452608 (patch) | |
tree | c9f57574b0b05c3ee02e153303aaf9f827e19c28 /src/elementaryFunctions/atan/Makefile.in | |
parent | cd9b4f56d9cb58aff3511996dc517196c026863a (diff) | |
download | scilab2c-54c5df264795ceb76bba56b03cafe01578452608.tar.gz scilab2c-54c5df264795ceb76bba56b03cafe01578452608.tar.bz2 scilab2c-54c5df264795ceb76bba56b03cafe01578452608.zip |
* Importing Scilab ATAN algorithm
* License update
* Tests
Diffstat (limited to 'src/elementaryFunctions/atan/Makefile.in')
-rw-r--r-- | src/elementaryFunctions/atan/Makefile.in | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/elementaryFunctions/atan/Makefile.in b/src/elementaryFunctions/atan/Makefile.in index 07778fb6..272beaa8 100644 --- a/src/elementaryFunctions/atan/Makefile.in +++ b/src/elementaryFunctions/atan/Makefile.in @@ -66,7 +66,10 @@ am_testDoubleAtan_OBJECTS = testDoubleAtan-testDoubleAtan.$(OBJEXT) testDoubleAtan_OBJECTS = $(am_testDoubleAtan_OBJECTS) am__DEPENDENCIES_1 = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ - $(top_builddir)/elementaryFunctions/atan/libAtan.la + $(top_builddir)/lib/lapack/libscilapack.la \ + $(top_builddir)/elementaryFunctions/sqrt/libSqrt.la \ + $(top_builddir)/elementaryFunctions/atan/libAtan.la \ + $(top_builddir)/auxiliaryFunctions/abs/libAbs.la testDoubleAtan_DEPENDENCIES = $(am__DEPENDENCIES_1) testDoubleAtan_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(testDoubleAtan_CFLAGS) \ @@ -206,8 +209,9 @@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -libAtan_la_CFLAGS = -I ../../type \ - -I ../includes +libAtan_la_CFLAGS = -I $(top_builddir)/type \ + -I $(top_builddir)/elementaryFunctions/includes \ + -I $(top_builddir)/auxiliaryFunctions/includes instdir = $(top_builddir)/lib pkglib_LTLIBRARIES = libAtan.la @@ -231,7 +235,10 @@ check_INCLUDES = -I $(top_builddir)/elementaryFunctions/includes \ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ + $(top_builddir)/lib/lapack/libscilapack.la \ + $(top_builddir)/elementaryFunctions/sqrt/libSqrt.la \ $(top_builddir)/elementaryFunctions/atan/libAtan.la \ + $(top_builddir)/auxiliaryFunctions/abs/libAbs.la \ @LIBMATH@ |