To compile this game just extract the tarball and run `make'. Something like this:

   $ curl -o arrows.tar.bz2 https://share.xexyl.net/games/arrows.tar.bz2
   $ tar xvf arrows.tar.bz2
   $ make

You could also do that like :

    $ curl https://share.xexyl.net/games/arrows.tar.bz2 | tar xvf -
    $ make

If you want change the number of seconds to delay (default 1.2) you can do that like:

    $ make CFLAGS="-DDELAY=1.5"

If you change the DELAY define to a non number don't expect it to compile but
rather a compiler error. There is no error checking here nor will there ever be.

Requires the ncurses library both the include file and the library itself. This
has been tested under macOS and Linux but I expect any Unix system with the ncurses
library should be fine as it doesn't use any system dependent optimisations or any
such thing.

To run :

    $ ./arrows

(See README file for more information on playing.)
