projects
/
Faustine.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Bug fixed for unix error "readlink /proc/self/fd/0" on MacOS.
[Faustine.git]
/
examples
/
Makefile
diff --git
a/examples/Makefile
b/examples/Makefile
index
66667e1
..
2f1924b
100644
(file)
--- a/
examples/Makefile
+++ b/
examples/Makefile
@@
-1,4
+1,11
@@
-SOURCES = $(wildcard */*.dsp)
+EXAMPLES = 2d_fft close dilation erosion fft open primitives sinwave nstvector #licenceplate
-all: $(SOURCES)
-
+all: examples
+
+examples::
+ @echo "Making all the examples, it may take several minutes..."
+ @$(foreach example, $(EXAMPLES), $(MAKE) -C $(example);)
+
+clean::
+ @$(foreach example, $(EXAMPLES), $(MAKE) -C $(example) clean;)
+ rm -f */*~