[Change] Fixed Makefiles up to actually build all objects.

This commit is contained in:
Rtch90 2011-12-17 20:04:17 +00:00
parent eb120e1252
commit 8e746c2913
2 changed files with 5 additions and 2 deletions

View File

@ -2,7 +2,7 @@ CC = g++
CFLAGS = -ansi -Wall -g CFLAGS = -ansi -Wall -g
LDADD = -lGL -lGLU -lSDL -lSDL_image LDADD = -lGL -lGLU -lSDL -lSDL_image
objects = objects = Game.o Globals.o Player.o \
.PHONY: default all clean .PHONY: default all clean

View File

@ -1,7 +1,10 @@
CC = g++ CC = g++
CFLAGS = -ansi -Wall -g CFLAGS = -ansi -Wall -g
LDADD = -lGL -lGLU -lSDL 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 .PHONY: default all clean