From ce7f4caaf9fa41e383efbc4854106558b3ff0e19 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Thu, 21 Jan 2010 15:38:03 -0500 Subject: Rework GLPong_Init and text init. Signed-off-by: Matt Turner --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index eed7203..e9f658d 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CC=gcc STRIP=strip WARN=-Wall -W -ansi -pedantic -CFLAGS=-g -Os -pipe -std=c99 ${WARN} +CFLAGS=-ggdb -g3 -pipe -std=c99 ${WARN} LDFLAGS=-Wl,-O1,-s INCLUDES=`sdl-config --cflags` LIBRARIES=`sdl-config --libs` -lSDL_image -lSDL_net -lGL -lGLU -lGLC @@ -9,7 +9,7 @@ EXT=.exe EXE=glpong3d${EXT} -OBJS=glpong3d.o # ball.o paddle.o +OBJS=glpong3d.o fps.o text.o # ball.o paddle.o all: ${OBJS} ${CC} ${LDFLAGS} ${OBJS} -o ${EXE} ${LIBRARIES} -- cgit v1.2.3