summaryrefslogtreecommitdiff
path: root/src/Makefile
blob: af7619e97b3d70d25f546a1fe232752d2acbb457 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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