summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-03-01 19:37:00 +0000
committerMatt Turner <mattst88@gmail.com>2008-03-01 19:37:00 +0000
commita8921d2baf7fe632839ec4c1a6f55db9c78f1c1c (patch)
tree145b9cd15e2770bedfb274708885511969813b31 /Makefile
parent8490c68f5d3fbb4d3e0030467dd785beca10c3f1 (diff)
Move frames per second stuff into separate files
git-svn-id: svn://mattst88.com/svn/glpong/trunk@14 449aeecc-241a-0410-943f-e2f883e2d7a2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 94d9c57..4259e2c 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ EXT=.exe
EXE=glpong${EXT}
-OBJS=glpong.o ball.o text.o #paddle.o
+OBJS=glpong.o ball.o text.o fps.o #paddle.o
all: ${OBJS}
${CC} ${LDFLAGS} ${OBJS} -o ${EXE} ${LIBRARIES}