projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
New directory tree, with preprocessor/ inside interpretor/.
[Faustine.git]
/
interpretor
/
preprocessor
/
faust-0.9.47mr3
/
documentation
/
faust-quick-reference-src
/
illustrations
/
Makefile
1
src
:= $(
wildcard
*
.dot
)
2
dst
:= $(
src
:
.dot
=
.pdf
)
3
4
dsp
:= $(
wildcard
*
.dsp
)
5
png
:= $(
dsp
:
.dsp
=
.png
)
6
7
all
: $(
dst
) $(
png
)
8
9
%
.pdf
: %
.dot
10
dot
-
Tpdf
-
o
$
@
$<
11
12
%
.png
: %
.dsp
13
faust2png
$<
14
cp
$(<)-
png
/
process.png
$
@
15