if test $# -lt 1
then
    echo Usage: c c_filename
elif test $# -eq 1
then
   cc -O $1.c -o $1
else
   for i
      do echo compiling ${i}.c
	 cc -O ${i}.c -o ${i}
   done
fi
