Building
--------
This program employs the make system for building.
On Unix-like systems (Linux, possibly Mac), just type "make" at the prompt.
See the "Makefile" file for more info on possible arguments to the make command.
On Windows systems, you're on your own -- and in any case you'll need a POSIX compatibility layer, since I haven't implemented conio.h support.

You'll find the main game executable in this folder (game-curses, or game-nocurses if you don't have a console I/O library installed).
There are also several smaller tests, which you can find in the "test" folder.
Type "make check" to run the tests (some require interaction: press "s" to end).

Documentation
-------------
This program employs doxygen for documentation.
Type "make doc" or "doxygen doxy.conf" to generate the documentation.
You'll find the documentation in the "doc" folder. 
Open "./doc/html/index.html" with your browser.
The "doc/latex" folder contains the files to generate a (large) PDF documentation. Type "cd ./doc/latex", then "make" to generate the documentation file, "refman.pdf".
