Added some performance boosting framerate regulation

This commit is contained in:
2011-07-01 11:40:38 -04:00
parent b50ed649f5
commit b31a3e26ab
8 changed files with 80 additions and 6 deletions

View File

@ -4,7 +4,11 @@ PROJECT=treewars
CXX=g++
CXXFLAGS=-DDEBUG -g `sdl-config --cflags`
LDFLAGS=`sdl-config --libs`
OBJECTS=main.o drawutils.o mathutils.o graph.o gamedata.o mainevent.o gamestate.o game.o titlescreen.o
OBJECTS=\
main.o \
drawutils.o mathutils.o timer.o \
graph.o gamedata.o \
mainevent.o gamestate.o game.o titlescreen.o
all: $(PROJECT)