projects
/
Faustine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(from parent 2:
6150323
)
Merge branch 'master' of https://scm.cri.ensmp.fr/git/Faustine
author
Karim Barkati
<karimbarkati@gmail.com>
Mon, 16 Sep 2013 13:59:05 +0000
(15:59 +0200)
committer
Karim Barkati
<karimbarkati@gmail.com>
Mon, 16 Sep 2013 13:59:05 +0000
(15:59 +0200)
Conflicts:
examples/Makefile
examples/Makefile
patch
|
blob
|
history
diff --git
a/examples/Makefile
b/examples/Makefile
index
66667e1
..
befe8b4
100644
(file)
--- a/
examples/Makefile
+++ b/
examples/Makefile
@@
-1,4
+1,11
@@
SOURCES = $(wildcard */*.dsp)
+DIRS = sinwave fft primitives # 2d_fft close fft open sinwave dilation erosion licenseplate primitives
-all: $(SOURCES)
+all: make-each-example
+
+define mytarget
+ make-each-example:: ; $(MAKE) -C $1
+endef
+
+$(foreach dir,$(DIRS),$(eval $(call mytarget,$(dir))))