From 2a4b3defeda7a2dbe3cf0b392455b96369ae1825 Mon Sep 17 00:00:00 2001 From: Karim Barkati Date: Mon, 16 Sep 2013 14:22:47 +0200 Subject: [PATCH 1/1] Examples Makefile. --- examples/Makefile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/examples/Makefile b/examples/Makefile index 66667e1..e66137f 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: eachexample + +define mytarget + eachexample:: ; $(MAKE) -C $1 +endef + +$(foreach dir,$(DIRS),$(eval $(call mytarget,$(dir)))) -all: $(SOURCES) - -- 2.20.1