Change the manual tabe colours so that we have a darker blue for the header, then...
[kugel-rb.git] / tools / checkwps / buildall.sh
blobb66bee224c03b79e41afbb2a1d2680f2a3874b20
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 MODELNAME=$model TARGETNAME=$target checkwps
9 mv $rootdir/checkwps.$model ./checkwps.$model > /dev/null 2>&1
10 done