
zBoy can be built on several platforms. Below are notes for some of them.


====== Linux ======
Command....: make -f Makefile.linux
Builds with: gcc
Requires...: SDL2 2.0.4+


====== Windows (Vista or newer) ======
Command....: mingw32-make -f Makefile.win
Builds with: MinGW-w64
Requires...: SDL2 2.0.4+


====== DOS ======
Command....: make -f Makefile.dos
Builds with: DJGPP v2.04 (v2.03 and older won't do, because of missing
             functions like snprintf(), strcasecmp() and friends...)
Requires...: Allegro lib (tested with Allegro v4.23)


------------------------------[ Configuration ]------------------------------
zBoy is configured at compile time using a few defines that are set by
Makefile files:
  LFNAVAIL  - zBoy will use long filenames for screenshots (otherwise it
              sticks to 8+3)
  DEBUGMODE - enabled verbose outputs useful for debugging
  LIMITRUN  - limits the amount of cycles that the emulator will execute,
              useful mostly for profiling and benchmarking. LIMITRUN must be
              set to an integer, it represents the number of cycles to be
              executed as 2^N.
