repo.or.cz
/
pspdecompiler.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bug in var->Def
[pspdecompiler.git]
/
makedots.sh
blob
3cb5adfdb79719e05816e2e66f38aba73413606d
1
#!/bin/sh
2
3
LIST
=
`find * -iname "*.dot" `
4
5
for
FILE
in
$LIST
;
do
6
BASENAME
=
`basename
$FILE
.dot`
;
7
dot
-Tpng -o
graphs
/
$BASENAME
.png
$FILE
;
8
rm
-f
$FILE
;
9
done
10