diff options
author | jofret | 2008-04-11 11:37:13 +0000 |
---|---|---|
committer | jofret | 2008-04-11 11:37:13 +0000 |
commit | df7013b575511a57c5b1f4f2a56d16efbe008ffd (patch) | |
tree | 40762447ecf149e34aa33ff14d9285595a8dc868 /src/elementaryFunctions/acos/Makefile.am | |
parent | c7b7a3d6ae4ad04f1f62791229fda99792dbd9ba (diff) | |
download | scilab2c-df7013b575511a57c5b1f4f2a56d16efbe008ffd.tar.gz scilab2c-df7013b575511a57c5b1f4f2a56d16efbe008ffd.tar.bz2 scilab2c-df7013b575511a57c5b1f4f2a56d16efbe008ffd.zip |
libtool management
Diffstat (limited to 'src/elementaryFunctions/acos/Makefile.am')
-rw-r--r-- | src/elementaryFunctions/acos/Makefile.am | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/src/elementaryFunctions/acos/Makefile.am b/src/elementaryFunctions/acos/Makefile.am index 38541f43..b5c6e22b 100644 --- a/src/elementaryFunctions/acos/Makefile.am +++ b/src/elementaryFunctions/acos/Makefile.am @@ -1,25 +1,23 @@ ## -## -*- makefile -*- +## Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +## Copyright (C) 2007-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 Fri Apr 20 10:26:22 2007 jofret -## -## Copyright INRIA 2007 ## -AM_CFLAGS = -I ../../type \ - -I ../includes +libAcos_la_CFLAGS = -I ../../type \ + -I ../includes instdir = $(top_builddir)/lib -inst_LIBRARIES = libAcos.a - -noinst_LIBRARIES = libAcos.a +pkglib_LTLIBRARIES = libAcos.la -libAcos_a_SOURCES = $(HEAD) $(SRC) +libAcos_la_SOURCES = $(HEAD) $(SRC) SRC = sacoss.c \ dacoss.c \ @@ -48,7 +46,7 @@ TESTS = testAcos # testAcos_SOURCES = testAcos.c testAcos_CFLAGS = $(check_INCLUDES) -testAcos_LDADD = $(top_builddir)/lib/libDoubleComplex.a \ - $(top_builddir)/lib/libFloatComplex.a \ - $(top_builddir)/lib/libAcos.a \ +testAcos_LDADD = $(top_builddir)/type/libDoubleComplex.la \ + $(top_builddir)/type/libFloatComplex.la \ + $(top_builddir)/elementaryFunctions/acos/libAcos.la \ @LIBMATH@
\ No newline at end of file |