diff options
author | jofret | 2008-04-11 11:53:16 +0000 |
---|---|---|
committer | jofret | 2008-04-11 11:53:16 +0000 |
commit | f54078f5747edf6114314ccf7c19b7eb7005410f (patch) | |
tree | f293dc368fcc253af26b9f8cffa3ff9825854276 /src/elementaryFunctions/exp/Makefile.am | |
parent | 5904efbb93840f489f8f93a12637b8c16be9b0bb (diff) | |
download | scilab2c-f54078f5747edf6114314ccf7c19b7eb7005410f.tar.gz scilab2c-f54078f5747edf6114314ccf7c19b7eb7005410f.tar.bz2 scilab2c-f54078f5747edf6114314ccf7c19b7eb7005410f.zip |
libtool management
Diffstat (limited to 'src/elementaryFunctions/exp/Makefile.am')
-rw-r--r-- | src/elementaryFunctions/exp/Makefile.am | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/src/elementaryFunctions/exp/Makefile.am b/src/elementaryFunctions/exp/Makefile.am index 6b7a38f9..ca1fbc28 100644 --- a/src/elementaryFunctions/exp/Makefile.am +++ b/src/elementaryFunctions/exp/Makefile.am @@ -1,25 +1,23 @@ ## -## -*- makefile -*- +## Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +## Copyright (C) 2008-2008 - INRIA - Bruno JOFRET ## -## Makefile -## Made by Bruno JOFRET <bruno.jofret@inria.fr> +## This file must be used under the terms of the CeCILL. +## This source file is licensed as described in the file COPYING, which +## you should have received as part of this distribution. The terms +## are also available at +## http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt ## -## Started on Fri Jan 5 10:19:16 2007 jofret -## Last update Wed Apr 18 17:09:35 2007 jofret -## -## Copyright INRIA 2007 ## -AM_CFLAGS = -I ../../type \ +libExp_la_CFLAGS = -I ../../type \ -I ../includes instdir = $(top_builddir)/lib -inst_LIBRARIES = libExp.a - -noinst_LIBRARIES = libExp.a +pkglib_LTLIBRARIES = libExp.la -libExp_a_SOURCES = $(HEAD) $(SRC) +libExp_la_SOURCES = $(HEAD) $(SRC) SRC = sexps.c \ dexps.c \ @@ -45,7 +43,11 @@ TESTS = testExp testExp_SOURCES = testExp.c testExp_CFLAGS = $(check_INCLUDES) -testExp_LDADD = $(top_builddir)/lib/libDoubleComplex.a \ - $(top_builddir)/lib/libFloatComplex.a \ - $(top_builddir)/lib/libExp.a \ +testExp_LDADD = $(top_builddir)/type/libDoubleComplex.la \ + $(top_builddir)/type/libFloatComplex.la \ + $(top_builddir)/elementaryFunctions/cos/libCos.la \ + $(top_builddir)/elementaryFunctions/sin/libSin.la \ + $(top_builddir)/elementaryFunctions/cosh/libCosh.la \ + $(top_builddir)/elementaryFunctions/sinh/libSinh.la \ + $(top_builddir)/elementaryFunctions/exp/libExp.la \ @LIBMATH@
\ No newline at end of file |