summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9777e90..2ffa1b8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
CC=gcc
-CFLAGS=-I. -lSDL2
+CFLAGS=-g -I. -lSDL2
SRC:=$(shell find ./ -maxdepth 1 -type f -regex ".*\.c" -not -name "main.c")
OBJ:=$(patsubst ./%.c,build/%.o,$(SRC))
_TESTS:=$(shell find ./tests/ -maxdepth 1 -type f -regex ".*\.c")