1#! /bin/sh 2 3BUILD_ARGS="$@" 4PARSE="--enable-parse-clocks" 5#PARSE= 6 7# baldwin sparc-sun-solaris2.7 8# bridgeport sparc-sun-solaris2.6 9# * bunnylou alpha-dec-osf4.0 10# * churchy alpha-dec-osf5.1 11# cowbird alpha-dec-osf4.0 12# grundoon sparc-sun-sunos4.1.3 13# * hepzibah freebsd-4 14# malarky sparc-sun-solaris2.8 15# * pogo sparc-sun-solaris2.8 16# * porkypine mips-dec-ultrix4.4 17# * rackety sparc-sun-sunos4.1.3/cc 18# ? roogey debian 19# * snavely hppa1.1-hp-hpux10.20 20# whimsy sparc-sun-solaris2.8 21 22c_d=`pwd` 23 24SIG=`perl -e 'print rand'` 25echo $SIG > .buildkey 26 27case "$LIST" in 28 '') LIST="bunnylou churchy hepzibah pogo porkypine rackety snavely" ;; 29esac 30 31for i in $LIST 32do 33 echo $i 34 case "1" in 35 0) 36 ssh $i "cd $c_d ; ./build $SIG $PARSE $BUILD_ARGS" & 37 ssh $i "cd $c_d ; ./build $SIG $PARSE --with-crypto=autokey $BUILD_ARGS" & 38 ssh $i "cd $c_d ; ./build $SIG $PARSE --without-crypto $BUILD_ARGS" & 39 ;; 40 1) ssh $i "cd $c_d ; \ 41./build $SIG $PARSE $BUILD_ARGS ; \ 42./build $SIG $PARSE --with-crypto=autokey $BUILD_ARGS ; \ 43./build $SIG $PARSE --without-crypto $BUILD_ARGS" & 44 ;; 45 esac 46done 47