diff options
author | jofret | 2008-05-23 12:20:00 +0000 |
---|---|---|
committer | jofret | 2008-05-23 12:20:00 +0000 |
commit | 3d11cf459f709f819df0fe15786bb4e369ac98db (patch) | |
tree | db64d91051d0f85d49fb2b20f758455599827b0d | |
parent | ab0d6297d50a5591ac60a978cf1ec4d5d17fec44 (diff) | |
download | scilab2c-3d11cf459f709f819df0fe15786bb4e369ac98db.tar.gz scilab2c-3d11cf459f709f819df0fe15786bb4e369ac98db.tar.bz2 scilab2c-3d11cf459f709f819df0fe15786bb4e369ac98db.zip |
Correct dependancies
-rw-r--r-- | src/elementaryFunctions/sin/Makefile.am | 5 | ||||
-rw-r--r-- | src/elementaryFunctions/sin/Makefile.in | 10 |
2 files changed, 12 insertions, 3 deletions
diff --git a/src/elementaryFunctions/sin/Makefile.am b/src/elementaryFunctions/sin/Makefile.am index d350b85f..0b528b1a 100644 --- a/src/elementaryFunctions/sin/Makefile.am +++ b/src/elementaryFunctions/sin/Makefile.am @@ -11,7 +11,7 @@ ## libSin_la_CFLAGS = -I ../../type \ - -I ../includes + -I ../includes instdir = $(top_builddir)/lib @@ -42,7 +42,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/elementaryFunctions/sin/libSin.la \ $(top_builddir)/elementaryFunctions/cos/libCos.la \ $(top_builddir)/elementaryFunctions/sinh/libSinh.la \ + $(top_builddir)/elementaryFunctions/exp/libExp.la \ $(top_builddir)/elementaryFunctions/cosh/libCosh.la \ + $(top_builddir)/elementaryFunctions/sqrt/libSqrt.la \ + $(top_builddir)/auxiliaryFunctions/abs/libAbs.la \ @LIBMATH@ check_PROGRAMS = testFloatSin testDoubleSin diff --git a/src/elementaryFunctions/sin/Makefile.in b/src/elementaryFunctions/sin/Makefile.in index 88cb4db6..4562b82e 100644 --- a/src/elementaryFunctions/sin/Makefile.in +++ b/src/elementaryFunctions/sin/Makefile.in @@ -69,7 +69,10 @@ am__DEPENDENCIES_1 = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/elementaryFunctions/sin/libSin.la \ $(top_builddir)/elementaryFunctions/cos/libCos.la \ $(top_builddir)/elementaryFunctions/sinh/libSinh.la \ - $(top_builddir)/elementaryFunctions/cosh/libCosh.la + $(top_builddir)/elementaryFunctions/exp/libExp.la \ + $(top_builddir)/elementaryFunctions/cosh/libCosh.la \ + $(top_builddir)/elementaryFunctions/sqrt/libSqrt.la \ + $(top_builddir)/auxiliaryFunctions/abs/libAbs.la testDoubleSin_DEPENDENCIES = $(am__DEPENDENCIES_1) testDoubleSin_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(testDoubleSin_CFLAGS) \ @@ -210,7 +213,7 @@ target_alias = @target_alias@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ libSin_la_CFLAGS = -I ../../type \ - -I ../includes + -I ../includes instdir = $(top_builddir)/lib pkglib_LTLIBRARIES = libSin.la @@ -237,7 +240,10 @@ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/elementaryFunctions/sin/libSin.la \ $(top_builddir)/elementaryFunctions/cos/libCos.la \ $(top_builddir)/elementaryFunctions/sinh/libSinh.la \ + $(top_builddir)/elementaryFunctions/exp/libExp.la \ $(top_builddir)/elementaryFunctions/cosh/libCosh.la \ + $(top_builddir)/elementaryFunctions/sqrt/libSqrt.la \ + $(top_builddir)/auxiliaryFunctions/abs/libAbs.la \ @LIBMATH@ |