#!/bin/bash
DBGOPT_OPTION="-O6 -s -fomit-frame-pointer -m486 -malign-loops=0 -malign-functions=2 -malign-jumps=0";
if test "$1" = "d"; then
  DBGOPT_OPTION="-g";
  shift;
fi;
gcc -o $1 $1.c -Wall $DBGOPT_OPTION $2 $3 $4 $5 $6 $7 $8 $9

