projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
New Makefile for libsndfile-ocaml library integration; Makefiles chain modified.
[Faustine.git]
/
interpretor
/
preprocessor
/
faust-0.9.47mr3
/
tools
/
faust2appls
/
faust2pdf
1
#!/bin/bash
2
3
faust2svg $@
4
5
for
d
in
$@
;
do
6
cd
$d
-svg
7
echo
$d
-svg
8
for
f
in
*
.svg
;
do
9
inkscape
-E
${f%.svg}
.eps
$f
10
epstopdf
${f%.svg}
.eps
11
rm
$f
12
done
13
cd
..
14
mv
$d
-svg
$d
-pdf
15
done
16