repo.or.cz
/
kugel-rb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Better menu verbiage for test_codec
[kugel-rb.git]
/
tools
/
checkwps
/
cleanall.sh
blob
19a3aec6fbac88a807f5beb98c0e89bf6fb80842
1
#!/bin/sh
2
rootdir
=
`dirname
$0
`
3
outdir
=
$rootdir
/
output
4
5
make
clean
# make clean the build dir first
6
rm
-f
autoconf.h
7
rm
-f
Makefile
8
cat
$rootdir
/
targets.txt |
(
9
while
read
target model
10
do
11
rm
-f
$outdir
/
checkwps.
$model
# then delete any output/checkwps.*
12
rmdir
$outdir
> /
dev
/
null
2
>&
1
13
done
14
)