diff options
author | torset | 2008-11-13 10:32:08 +0000 |
---|---|---|
committer | torset | 2008-11-13 10:32:08 +0000 |
commit | d839b178843672b7175fd1c607553437c395456c (patch) | |
tree | 005a407986453cf3ec8369c70a08c36e646dfb40 /src/operations/multiplication/Makefile.am | |
parent | 8b3e28e3007c2105035da2b0140ee91a75768fd1 (diff) | |
download | scilab2c-d839b178843672b7175fd1c607553437c395456c.tar.gz scilab2c-d839b178843672b7175fd1c607553437c395456c.tar.bz2 scilab2c-d839b178843672b7175fd1c607553437c395456c.zip |
change repertory for the multiplication and division and made the modifs in the files using them (2nd send, the 1st wasn't complete).
Diffstat (limited to 'src/operations/multiplication/Makefile.am')
-rw-r--r-- | src/operations/multiplication/Makefile.am | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/operations/multiplication/Makefile.am b/src/operations/multiplication/Makefile.am new file mode 100644 index 00000000..f1b36d76 --- /dev/null +++ b/src/operations/multiplication/Makefile.am @@ -0,0 +1,39 @@ +## +## 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 +## +## + +libMultiplication_la_CFLAGS = -I $(top_builddir)/type \ + -I $(top_builddir)/operations/includes + +instdir = $(top_builddir)/lib + +pkglib_LTLIBRARIES = libMultiplication.la + +HEAD = ../includes/multiplication.h + +libMultiplication_la_SOURCES = $(HEAD) \ + ctimess.c \ + ztimess.c + +check_PROGRAMS = testMultiplication + +check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ + $(top_builddir)/type/libFloatComplex.la \ + libMultiplication.la + +check_INCLUDES = -I $(top_builddir)/type \ + -I $(top_builddir)/operations/includes + +testMultiplication_SOURCES = testMultiplication.c +testMultiplication_LDADD = $(check_LDADD) +testMultiplication_CFLAGS = $(check_INCLUDES) + +TESTS = testMultiplication |