X-Git-Url: https://scm.cri.ensmp.fr/git/Faustine.git/blobdiff_plain/829259826b29edc284ec43810bb505a832091dda..77b9c8773c1b1a6f7731d4b5d4f6fa50446869b5:/examples/Makefile diff --git a/examples/Makefile b/examples/Makefile index c7e43eb..7163a89 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -1,15 +1,11 @@ -#SOURCES = $(wildcard */*.dsp) -#MAKEFILES = $(wildcard */Makefile) -EXAMPLES = 2d_fft close dilation erosion fft licenceplate open primitives sinwave +EXAMPLES = 2d_fft close dilation erosion fft open primitives sinwave #licenceplate all: examples examples:: - echo "Making all the examples, it may take several mins..." - @$(foreach example, $(EXAMPLES), cd $(example) && make && cd ..;) + @echo "Making all the examples, it may take several minutes..." + @$(foreach example, $(EXAMPLES), $(MAKE) -C $(example);) clean:: - @$(foreach example, $(EXAMPLES), cd $(example) && make clean && cd ..;) - -#examples: -# cd primitives && make + @$(foreach example, $(EXAMPLES), $(MAKE) -C $(example) clean;) + rm -f */*~