diff options
author | torset | 2008-12-09 10:41:35 +0000 |
---|---|---|
committer | torset | 2008-12-09 10:41:35 +0000 |
commit | d4c92e80597b3e091a7abad2942abef4147ffdea (patch) | |
tree | fed034eb7e6e005faf0e9dc73700c03a4a478a9d /src/signalProcessing/conv2d/Makefile.am | |
parent | bc81cc3cb6bc27831fa46c87c5afa982dcb4f142 (diff) | |
download | scilab2c-d4c92e80597b3e091a7abad2942abef4147ffdea.tar.gz scilab2c-d4c92e80597b3e091a7abad2942abef4147ffdea.tar.bz2 scilab2c-d4c92e80597b3e091a7abad2942abef4147ffdea.zip |
Add conv2d
Diffstat (limited to 'src/signalProcessing/conv2d/Makefile.am')
-rw-r--r-- | src/signalProcessing/conv2d/Makefile.am | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/src/signalProcessing/conv2d/Makefile.am b/src/signalProcessing/conv2d/Makefile.am new file mode 100644 index 00000000..0dd407cd --- /dev/null +++ b/src/signalProcessing/conv2d/Makefile.am @@ -0,0 +1,64 @@ +## +## Scilab ( http://www.scilab.org/ ) - This file is part of Scilab +## Copyright (C) 2008 - INRIA - Arnaud TORSET +## +## 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 +## +## + + + + +libConv2d_la_CFLAGS = -I $(top_builddir)/type \ + -I $(top_builddir)/operations/includes \ + -I $(top_builddir)/signalProcessing/includes + + +instdir = $(top_builddir)/lib + + +pkglib_LTLIBRARIES = libConv2d.la + +HEAD = ../includes/conv2d.h + +libConv2d_la_SOURCES = $(HEAD) \ + sconv2da.c \ + dconv2da.c \ + cconv2da.c \ + zconv2da.c + + +############### +#### Check #### +############### + +check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ + $(top_builddir)/type/libFloatComplex.la \ + $(top_builddir)/operations/multiplication/libMultiplication.la \ + $(top_builddir)/operations/addition/libAddition.la \ + libConv2d.la + + + +check_INCLUDES = -I $(top_builddir)/type \ + -I $(top_builddir)/operations/includes \ + -I $(top_builddir)/signalProcessing/includes + +check_PROGRAMS = testFloatConv2d testDoubleConv2d + +TESTS = testFloatConv2d testDoubleConv2d + +testDoubleConv2d_SOURCES = testDoubleConv2d.c +testDoubleConv2d_LDADD = $(check_LDADD) +testDoubleConv2d_CFLAGS = $(check_INCLUDES) + +testFloatConv2d_SOURCES = testFloatConv2d.c +testFloatConv2d_LDADD = $(check_LDADD) +testFloatConv2d_CFLAGS = $(check_INCLUDES) + + + |