diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ CC=gcc
STRIP=strip
WARN=-Wall -W -ansi -pedantic
-CFLAGS=-Os -pipe -std=c99 ${WARN}
-LDFLAGS=-Wl,-O1,-s
+CFLAGS=-Os -pipe -std=c99 ${WARN} -g
+LDFLAGS=-Wl,-O1
INCLUDES=`sdl-config --cflags`
LIBRARIES=`sdl-config --libs` -lSDL_image -lGL
EXT=.exe
@@ -23,4 +23,4 @@ remake: rebuild %.o: %.c
${CC} ${CFLAGS} ${INCLUDES} -c -o $@ $<
-
\ No newline at end of file +
|