summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index de596c5..8333d28 100644
--- a/Makefile
+++ b/Makefile
@@ -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
+