X-Git-Url: https://scm.cri.ensmp.fr/git/Faustine.git/blobdiff_plain/dbded051d69cc5ba556884eb285feba032e09d29..77b9c8773c1b1a6f7731d4b5d4f6fa50446869b5:/examples/Makefile diff --git a/examples/Makefile b/examples/Makefile index 66667e1..7163a89 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -1,4 +1,11 @@ -SOURCES = $(wildcard */*.dsp) +EXAMPLES = 2d_fft close dilation erosion fft open primitives sinwave #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 */*~