summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
new file mode 100644
index 00000000..af7619e9
--- /dev/null
+++ b/src/Makefile
@@ -0,0 +1,40 @@
+##
+## -*- makefile -*-
+##
+## Makefile
+## Made by Bruno JOFRET <bruno.jofret@inria.fr>
+##
+## Started on Tue Dec 5 09:19:53 2006 jofret
+## Last update Thu Dec 7 16:14:26 2006 jofret
+##
+## Copyright INRIA 2006
+##
+
+DIRS = type \
+ elementaryFunctions
+
+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
+
+todo:
+ @grep -R FIXME * > TODO
+ @cat TODO \ No newline at end of file