From 8e746c291385d7772d6f46ad327adb3a91241324 Mon Sep 17 00:00:00 2001
From: Rtch90 <ritchie.cunningham@protonmail.com>
Date: Sat, 17 Dec 2011 20:04:17 +0000
Subject: [PATCH] [Change] Fixed Makefiles up to actually build all objects.

---
 src/Unuk/Makefile    | 2 +-
 src/libUnuk/Makefile | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/Unuk/Makefile b/src/Unuk/Makefile
index 21dff96..c5c0e78 100644
--- a/src/Unuk/Makefile
+++ b/src/Unuk/Makefile
@@ -2,7 +2,7 @@ CC	= g++
 CFLAGS	= -ansi -Wall -g
 LDADD	= -lGL -lGLU -lSDL -lSDL_image
 
-objects = 
+objects = Game.o Globals.o Player.o \
 
 
 .PHONY: default all clean
diff --git a/src/libUnuk/Makefile b/src/libUnuk/Makefile
index d12f33a..5c6fef0 100644
--- a/src/libUnuk/Makefile
+++ b/src/libUnuk/Makefile
@@ -1,7 +1,10 @@
 CC = g++
 CFLAGS = -ansi -Wall -g
 LDADD = -lGL -lGLU -lSDL
-objects = Debug.o Input.o \
+objects = ApplySurface.o Button.o, ButtonToggle.o Character.o Collision.o \
+	    Debug.o FPS.o Font.o ImageLoader.o InGameMenu.o Input.o MainMenu.o  \
+	    Map.o MapElement.o MapEntities.o MapTile.o Menu.o NPC.o ParticleEmitter.o \
+	    Rect.o Text.o Texture.o TextureManager.o Timer.o \
 
 .PHONY: default all clean