summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 69f36fb..94d9c57 100644
--- a/Makefile
+++ b/Makefile
@@ -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}