summaryrefslogtreecommitdiff
path: root/src/auxiliaryFunctions/Makefile
diff options
context:
space:
mode:
authorjofret2007-02-08 12:36:46 +0000
committerjofret2007-02-08 12:36:46 +0000
commitd35e734016e6b765708498ea10f386063537f8e3 (patch)
treeca435856c1c70f2e2805dcfd1324f6e383582fbf /src/auxiliaryFunctions/Makefile
parentb9d6a3e4dbca5e66931c803174ec8541e6676bc6 (diff)
downloadscilab2c-d35e734016e6b765708498ea10f386063537f8e3.tar.gz
scilab2c-d35e734016e6b765708498ea10f386063537f8e3.tar.bz2
scilab2c-d35e734016e6b765708498ea10f386063537f8e3.zip
* src/auxiliaryFunctions/sign :
Signe of a float or double. * src/auxiliaryFunctions/sign/sign.h : Interface * src/auxiliaryFunctions/sign/{sd}signs.c : Implementation : s(float) d(double) Sign module and lib
Diffstat (limited to 'src/auxiliaryFunctions/Makefile')
-rw-r--r--src/auxiliaryFunctions/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/auxiliaryFunctions/Makefile b/src/auxiliaryFunctions/Makefile
new file mode 100644
index 00000000..4ced8435
--- /dev/null
+++ b/src/auxiliaryFunctions/Makefile
@@ -0,0 +1,35 @@
+##
+## -*- makefile -*-
+##
+## Makefile
+## Made by Bruno JOFRET <bruno.jofret@inria.fr>
+##
+## Started on Tue Dec 5 09:19:53 2006 jofret
+## Last update Thu Feb 8 10:06:18 2007 jofret
+##
+## Copyright INRIA 2006
+##
+
+DIRS = sign
+
+all: recure
+
+recure:
+ @for i in $(DIRS); \
+ do cd $$i && make; \
+ cd .. ;\
+ done
+
+clean:
+ @for i in $(DIRS); \
+ do cd $$i && make $@; \
+ cd .. ;\
+ done
+
+distclean:
+ @for i in $(DIRS); \
+ do cd $$i && make $@; \
+ cd .. ;\
+ done
+
+re: clean all \ No newline at end of file