Index: client/Client/main.cpp
===================================================================
--- client/Client/main.cpp	(revision ea3a3a92b647be4149fa4106c5b98c89dcd4868c)
+++ client/Client/main.cpp	(revision 00659628fd4d35e6abb9a7c02f5a9942fff3c3a7)
@@ -149,6 +149,5 @@
 string alertMessage;
 
-int main(int argc, char **argv)
-{
+int main(int argc, char **argv) {
    ALLEGRO_DISPLAY *display = NULL;
    ALLEGRO_EVENT_QUEUE *event_queue = NULL;
@@ -207,10 +206,10 @@
    }
  
-   if(!al_install_keyboard()) {
+   if (!al_install_keyboard()) {
       fprintf(stderr, "failed to initialize the keyboard!\n");
       return -1;
    }
 
-    if(!al_install_mouse()) {
+    if (!al_install_mouse()) {
       fprintf(stderr, "failed to initialize the mouse!\n");
       return -1;
@@ -218,5 +217,5 @@
  
    timer = al_create_timer(1.0 / FPS);
-   if(!timer) {
+   if (!timer) {
       fprintf(stderr, "failed to create timer!\n");
       return -1;
@@ -230,5 +229,5 @@
    }
    display = al_create_display(SCREEN_W, SCREEN_H);
-   if(!display) {
+   if (!display) {
       fprintf(stderr, "failed to create display!\n");
       al_destroy_timer(timer);
@@ -244,5 +243,5 @@
  
    event_queue = al_create_event_queue();
-   if(!event_queue) {
+   if (!event_queue) {
       fprintf(stderr, "failed to create event_queue!\n");
       al_destroy_display(display);
Index: client/makefile
===================================================================
--- client/makefile	(revision ea3a3a92b647be4149fa4106c5b98c89dcd4868c)
+++ client/makefile	(revision 00659628fd4d35e6abb9a7c02f5a9942fff3c3a7)
@@ -1,4 +1,4 @@
 CC = g++
-FLAGS = -Wall -g
+FLAGS = -Wall
 
 UNAME_S := $(shell uname -s)
Index: readme.txt
===================================================================
--- readme.txt	(revision ea3a3a92b647be4149fa4106c5b98c89dcd4868c)
+++ readme.txt	(revision 00659628fd4d35e6abb9a7c02f5a9942fff3c3a7)
@@ -4,28 +4,28 @@
 http://ventilatorxor.wordpress.com/2011/08/07/linux-allegro5-static-linking-for-beginners/
 
-The info below is outdated. The latest info is on the github wiki.
-
-BoostPro Installer options
-
--multithreaded
--multithreaded debug
-
-
-old installation instructions
-
-client
+CLIENT
 ______
 
-install the boost library
-install openssl using the old windows installer
+OSX:
 
-Add the following to Linker -> Input -> Additional Dependencies:
-libeay32.lib
-ssleay32.lib
+Install MacPorts from https://guide.macports.org/chunked/installing.macports.html
 
+To install allegro, dO the following steps in a separate directory:
 
-server
+sudo port install zlib freetype jpeg libogg physfs libpng flac libtheora +universal
+git clone https://github.com/liballeg/allegro5.git allegro
+cd allegro
+mdkir build
+cd build
+cmake -DSTATIC=on ..
+make
+sudo make install
+
+Now, go network-game/client and run:
+make
+./gameClient medievaltech.com 8000
+
+SERVER
 ______
 
-install the boost library
-install openssl on ubuntu (should be easy)
+coming soon
