COMPILING FROM SOURCE
=====================

What you link against, and what defines you must make depend upon your target platform.

COMPILING FOR DOS
=================

Required libraries are ZLib and Allegro.

Compile all source with defines 'TARG_OS_DOS', 'TARGET_ALLEGRO' and 'TARG_FILE_DIRENT'.
Link against zlib and Allegro.

Compiler I used : DJGPP (DOS GCC)

COMPILING FOR LINUX
===================

Required libraries are ZLib and SVGALib.

Compile with defines 'TARGET_SVGALIB' and 'TARG_FILE_DIRENT'
Link against zlib and SVGALib

Compiler I used : GCC

COMPILING FOR WINDOWS/DIRECTX
=============================

Required libraries are the usual Win32 set + DirectX 6 or above and ZLib.

Compile defines : 'TARGET_WIN32', 'TARG_OS_WIN32', 'TARG_FILE_WIN32'
Link against at least these :

kernel32.lib user32.lib gdi32.lib ddraw.lib dinput.lib dsound.lib dxguid.lib zlib.lib

Compiler I used : MSVC++ 5