Building client on linux (tested in ubuntu) Build a static version of the allegro library http://ventilatorxor.wordpress.com/2011/08/07/linux-allegro5-static-linking-for-beginners/ CLIENT ______ OSX: Install MacPorts from https://guide.macports.org/chunked/installing.macports.html To install allegro, do the following steps in a separate directory: sudo port selfupdate sudo port upgrade outdated sudo port install zlib freetype jpeg libogg physfs libpng flac libtheora +universal // Don't think I need libtheora, don't include +universal for Mojave or higher git clone https://github.com/liballeg/allegro5.git allegro cd allegro mkdir build cd build cmake -DSHARED=0 .. make sudo make install Now, go to network-game/client and run: make ./gameClient medievaltech.com 8000 SERVER ______ coming soon