aboutsummaryrefslogtreecommitdiffstats
path: root/makeall.sh
blob: 1566f09026607cc3c1b8ebd5b34fd5c80284bfd0 (plain)
1
2
3
4
5
6
7
#!/bin/sh

for p in 1 2 3 4 5 6
do
    echo "============>>> ERROR: Pass $p <<<============"
    make main 2>&1 | tee makelog-pass-$p.txt | grep ">>> ERROR:"
done