summaryrefslogtreecommitdiffstats
path: root/tools/checkwps/buildall.sh
blob: 23fc7ff7f4ab16a989890ae7d12d4dd613a833d5 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
cat targets.txt | (
    while read target model
    do
        rm -f checkwps.$model
        make MODEL=$model TARGET=$target checkwps
    done
)