#!/bin/sh satcompetition=no log=no debug=no optimize=no stats=undefined trace=undefined static=yes shared=no thirtytwobit=no static=no while [ $# -gt 0 ] do case $1 in -l|--log) debug=yes; log=yes;; -g|--debug) debug=yes; optimize=no;; -s|--stats) stats=yes;; -t|--trace) trace=yes;; --no-stats) stats=no;; --no-trace) trace=no;; -32|--32|-m32) thirtytwobit=yes;; -static|--static) static=yes;; -O) debug=no; optimize=yes;; *) cat < ...] where