#! /bin/sh

if [ "$1" = "-v" ] ; then
   shift 3
   echo 
   echo $@
elif [ "$1" = "-c" ] ; then
   echo '    'COMPILE $2
   shift 2
elif [ "$1" = "-l" ] ; then
   echo '    'LINK $2
   shift 2
fi
exec $@
