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
/
tools
/
faust2appls
/
faust2sig
1
#!/bin/bash
2
for
f
in
$@
;
do
3
faust
-sg
$f
-o
/
dev
/
null
4
dot
-Tpdf
$f
-sig
.dot
-o
$f
-sig
.pdf
5
rm
$f
-sig
.dot
6
done
7