diff options
author | torset | 2009-01-13 15:00:23 +0000 |
---|---|---|
committer | torset | 2009-01-13 15:00:23 +0000 |
commit | 54a313699c887c1465eda9a036eb40f46a1f3d82 (patch) | |
tree | d1929773a69a790360743e28389eb6d2abcd176a /src/auxiliaryFunctions/find2d/Makefile.am | |
parent | e7d7dd8d45221a09fc1cb9372640f6b62e3122cd (diff) | |
download | scilab2c-54a313699c887c1465eda9a036eb40f46a1f3d82.tar.gz scilab2c-54a313699c887c1465eda9a036eb40f46a1f3d82.tar.bz2 scilab2c-54a313699c887c1465eda9a036eb40f46a1f3d82.zip |
add find2d
Diffstat (limited to 'src/auxiliaryFunctions/find2d/Makefile.am')
-rw-r--r-- | src/auxiliaryFunctions/find2d/Makefile.am | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/auxiliaryFunctions/find2d/Makefile.am b/src/auxiliaryFunctions/find2d/Makefile.am new file mode 100644 index 00000000..5cec551a --- /dev/null +++ b/src/auxiliaryFunctions/find2d/Makefile.am @@ -0,0 +1,48 @@ +## +## Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +## Copyright (C) 2006-2008 - INRIA - Bruno JOFRET +## +## 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 +## +## + +AM_CFLAGS = -I ../../type \ + -I $(top_builddir)/auxiliaryFunctions/includes + +instdir = $(top_builddir)/lib + +pkglib_LTLIBRARIES = libFind2d.la + +libFind2d_la_SOURCES = $(HEAD) $(SRC) + +SRC = sfind2da.c \ + dfind2da.c \ + cfind2da.c \ + zfind2da.c + +HEAD = ../includes/find2d.h + +#### +# Checking Part +#### + +check_INCLUDES = -I $(top_builddir)/auxiliaryFunctions/includes \ + -I $(top_builddir)/type + +check_PROGRAMS = testFind2d + +TESTS = testFind2d + +# +# -*- Find2d Tests -*- +# +testFind2d_SOURCES = testFind2d.h testFind2d.c +testFind2d_CFLAGS = $(check_INCLUDES) +testFind2d_LDADD = $(top_builddir)/type/libDoubleComplex.la \ + $(top_builddir)/type/libFloatComplex.la \ + $(top_builddir)/auxiliaryFunctions/find2d/libFind2d.la \ + @LIBMATH@ |