summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/cosh/Makefile
diff options
context:
space:
mode:
authorjofret2007-01-31 16:37:34 +0000
committerjofret2007-01-31 16:37:34 +0000
commit1f2b1f49842a9a788303ef48bbc4e39eb4fa058c (patch)
tree330fe1efb8152d784c04ac9c822c690f370dd720 /src/elementaryFunctions/cosh/Makefile
parent170334ed9128da4a2f916d88ba52db0988e1d119 (diff)
downloadscilab2c-1f2b1f49842a9a788303ef48bbc4e39eb4fa058c.tar.gz
scilab2c-1f2b1f49842a9a788303ef48bbc4e39eb4fa058c.tar.bz2
scilab2c-1f2b1f49842a9a788303ef48bbc4e39eb4fa058c.zip
* src/elementaryFunctions/*.c :
Remove Multi Complex definition. * src/type/doubleComplex.h : Used as C99 Complex interface or hand-made complex. * src/type/floatComplex.h : Used as C99 Complex interface or hand-made complex. * src/*/Makefile : Add -std=c99 flag for native c99 complex compilation. * src/elementaryFunctions/exp : Exponential functions. * src/test/testExp.c : Add some Exponential functions tests.
Diffstat (limited to 'src/elementaryFunctions/cosh/Makefile')
-rw-r--r--src/elementaryFunctions/cosh/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elementaryFunctions/cosh/Makefile b/src/elementaryFunctions/cosh/Makefile
index 66c22a5f..6bdb078e 100644
--- a/src/elementaryFunctions/cosh/Makefile
+++ b/src/elementaryFunctions/cosh/Makefile
@@ -5,7 +5,7 @@
## Made by Bruno JOFRET <bruno.jofret@inria.fr>
##
## Started on Thu Nov 30 16:33:40 2006 jofret
-## Last update Fri Jan 19 14:54:57 2007 jofret
+## Last update Wed Jan 31 11:59:11 2007 jofret
##
## Copyright INRIA 2006
##
@@ -16,7 +16,7 @@ RM = rm -f
CC = gcc
INCLUDE = ../../type
LINK = ../../lib
-CFLAGS = -Werror -Wall -pedantic -ansi -I $(INCLUDE) -L $(LINK)
+CFLAGS = -Werror -Wall -pedantic -ansi -I $(INCLUDE) -L $(LINK) $(STANDARD)
AR = ar cru
RANLIB = ranlib