Warp Rogue Compile Guide Dependencies SDL 1.2.9 or higher Make Files windows.mak - Windows / MinGW (pure MinGW i.e. no MSYS) unix.mak - UNIX / GCC (only tested on Linux) mac.mak - Mac OS X / GCC Building All ports use make files and the process of building is similar on all platforms: - CD to the /src directory - execute: [make tool] -f[make file] release - an executable called "wrogue" should be generated in the main program directory example: mingw32-make -fwindows.mak release General Instructions for Unsupported Compilers - add the following directories to the include path of your compiler: /src, /src/lib, /src/ui, /src/generate Make sure that these directories are searched by your compiler BEFORE all other directories! This is necessary because otherwise your compiler might include wrong header files! - add all .c files in the directories mentioned above to your project/make file - add the platform file for your target platform to your project/make file (for Windows add pl_win.c, for UNIX add pl_unix.c, etc.) - add the SDL platform file (pl_sdl.c) to your project/make file