All pastes #228768 Raw Edit

Something

public text v1 · immutable
#228768 ·published 2006-10-30 07:03 UTC
rendered paste body
#!/bin/bash
BUILDS="10 14 20 21 22"
PATH=$PATH:/usr/local/arm/bin/:/usr/local/m68k-elf/bin/

set -e

for model in $BUILDS; do
    rm -rf build-$model
    mkdir build-$model
    cd build-$model

    ../tools/configure <<EOF
$model
N
EOF
    make ; make fullzip

    cd ..
done