projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' of https://scm.cri.ensmp.fr/git/Faustine
[Faustine.git]
/
examples
/
Makefile
1
SOURCES
= $(
wildcard
*/*
.dsp
)
2
DIRS
=
sinwave fft primitives
# 2d_fft close fft open sinwave dilation erosion licenseplate primitives
3
4
all
:
make-each-example
5
6
define
mytarget
7
make-each-example
:: ; $(
MAKE
) -
C
$1
8
endef
9
10
$(
foreach dir
,$(
DIRS
),$(
eval
$(
call mytarget
,$(
dir
))))
11