blob: 8d0ad9fd21fb7c2e59e2f8a4976a294c867e940a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
rootdir=`dirname $0`
cat $rootdir/targets.txt | (
while read target model
do
rm -f checkwps.$model
make -s -C $rootdir MODEL=$model TARGET=$target checkwps
mv $rootdir/checkwps.$model ./checkwps.$model > /dev/null 2>&1
done
)
|