X-Git-Url: https://scm.cri.ensmp.fr/git/Faustine.git/blobdiff_plain/dbded051d69cc5ba556884eb285feba032e09d29..31089f037dce058e4bfd398bb64091522d9ba4df:/examples/Makefile

diff --git a/examples/Makefile b/examples/Makefile
index 66667e1..b004c88 100644
--- 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: make-each-example
+
+define mytarget
+  make-each-example:: ; $(MAKE) -C $1
+endef
+
+$(foreach dir,$(DIRS),$(eval $(call mytarget,$(dir))))
 
-all: $(SOURCES)
-