Index: client/makefile
===================================================================
--- client/makefile	(revision 8aed9c0de5154bb4504eb5afd9ebab22ac0a4912)
+++ client/makefile	(revision 1e250bf9d48a19170bc81f9609b3fe97fd107f22)
@@ -1,10 +1,13 @@
 CC = g++
 LIB_FLAGS = `pkg-config --cflags --libs --static allegro-static-5.0 allegro_ttf-static-5.0 allegro_primitives-static-5.0`
-FLAGS = $(LIB_FLAGS)
+FLAGS = -Wall
 COMMON_PATH = ../common
 DEPENDENCIES = Common.o MessageContainer.o MessageProcessor.o Player.o WorldMap.o Projectile.o Game.o GameRender.o GameSummary.o chat.o GuiComponent.o Window.o Textbox.o Button.o RadioButtonList.o TextLabel.o
 
 gameClient : Client/main.cpp $(DEPENDENCIES)
-	$(CC) -o $@ $+ $(FLAGS)
+	$(CC) -o $@ $+ $(FLAGS) $(LIB_FLAGS)
+
+%.o : Client/%.cpp
+	$(CC) -c -o $@ $? $(FLAGS)
 
 Common.o : $(COMMON_PATH)/Common.cpp
@@ -32,7 +35,4 @@
 	$(CC) -c -o $@ $? $(FLAGS)
 
-%.o : Client/%.cpp
-	$(CC) -c -o $@ $? $(FLAGS)
-
 clean:
 	rm *.o
