Merge branch 'master' of https://scm.cri.ensmp.fr/git/Faustine
[Faustine.git] / examples / Makefile
index 66667e1..befe8b4 100644 (file)
@@ -1,4 +1,11 @@
 SOURCES = $(wildcard */*.dsp)
 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))))