
This file gives instructions on how to build ASM from source.


* First get the Allegro graphics library at http://alleg.sourceforge.net/

* Install Allegro.

* Compile ASM

I used these compilers:
DOS    : DJGPP 2.03, gcc 3.4.4
Windows: MinGW 4.1, gcc 3.4.2
Linux  : Red Hat Linux 9.0, gcc 3.2.2

---------------------------------------------
DOS
---------------------------------------------

Use the DJGPP C compiler. http://www.delorie.com/

cd dos32bit
make


---------------------------------------------
Windows
---------------------------------------------

Use the MinGW C compiler. http://www.mingw.org/

cd win32
make

The makefile has been set up to link ASM statically. If you
don't want that, edit file src/mingw.mak.

---------------------------------------------
Linux
---------------------------------------------


cd linux
make


The makefile has been set up to link ASM statically. If you
don't want that, edit file src/unix.mak.

