diff options
author | Matt Turner <mattst88@gmail.com> | 2008-03-01 18:04:19 +0000 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2008-03-01 18:04:19 +0000 |
commit | 8490c68f5d3fbb4d3e0030467dd785beca10c3f1 (patch) | |
tree | ca375e1605a94d44bf23d3b8e80084ec65371da2 /Makefile | |
parent | 83723eb5558383537968bee22b2342372ad9a40d (diff) |
Begin adding text rendering support using QuesoGLC. Minor clean ups. Begin working on FPS counter.
git-svn-id: svn://mattst88.com/svn/glpong/trunk@13 449aeecc-241a-0410-943f-e2f883e2d7a2
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,12 +5,12 @@ DEFINES=-DINLINE=inline CFLAGS=-Os -pipe -std=c99 -g ${DEFINES} -Wall #${WARN} LDFLAGS=-Wl,-O1 INCLUDES=`sdl-config --cflags` -LIBRARIES=`sdl-config --libs` -lSDL_image -lGL +LIBRARIES=`sdl-config --libs` -lSDL_image -lGL -lGLC EXT=.exe EXE=glpong${EXT} -OBJS=glpong.o ball.o #paddle.o +OBJS=glpong.o ball.o text.o #paddle.o all: ${OBJS} ${CC} ${LDFLAGS} ${OBJS} -o ${EXE} ${LIBRARIES} |