#!/bin/sh
gcc -Wall -O3 source/game.c -o runme
if [ ! -f runme ]
then
    cp runme.precompiled runme
fi
chmod 777 runme
