Make the mips compiler not complain when bitwise operations do not have parenthesis.
[kugel-rb.git] / tools / checkwps / buildall.sh
blob8d0ad9fd21fb7c2e59e2f8a4976a294c867e940a
1 #!/bin/sh
2 rootdir=`dirname $0`
4 cat $rootdir/targets.txt | (
5 while read target model
6 do
7 rm -f checkwps.$model
8 make -s -C $rootdir MODEL=$model TARGET=$target checkwps
9 mv $rootdir/checkwps.$model ./checkwps.$model > /dev/null 2>&1
10 done