#!/bin/sh

for x in `seq 1 20`; do
  echo "*** " $x "th dive"; echo;
  make BUILD=opt perf;
done
