Minesweeper 2
  Compiling Instructions
------------------------

1. Windows Users

 - Open source/minesweeper.dev in Dev-C++.
 - Press F9 to Compile and Run.
 - This creates object files in obj/.
 - It also creates a ms2.exe executable in bin/.

2. Linux Users

 - Download and install the required RPMs:
    - SDL: http://www.libsdl.org/release/SDL-1.2.11-1.i386.rpm
    - SDL_image: http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.5-1.i386.rpm
 - Go to source/ in Terminal.
 - A Makefile for Linux is provided.
 - Type make to compile the project.
 - This creates object files in obj/.
 - It should also create an executable at bin/ms2.

3. All Users (Notes)

 - The provided object files in obj/ are Windows-compiled. Linux object files
     are in their respective subdirectories. If you compile under any Operating
     System, the provided object files in obj/ will be overwritten. You don't
     have to worry about this since you don't actually need those object files.
 - Makefiles provided:
    - source/Makefile.win - Windows makefile generated by Dev-C++.
    - source/Makefile - Linux makefile created by Eric Samuelson.
 - Executables provided:
    - bin/ms2.exe - Windows executable
    - ms2-linux32 - 32-bit Linux executable
    - ms2-linux64 - 64-bit Linux executable