summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-01-23 20:35:17 +0100
committerxengineering <me@xengineering.eu>2023-01-23 20:35:17 +0100
commit59eff22a223c64fc894d00d2216a7c701c34c5b8 (patch)
tree0e0dac25bfb8bd14ccdfd5dc495ef05178b5227e /Makefile
parentc18be301f06adad1a6eacbb7d02181599f2df2b4 (diff)
downloadlimox-59eff22a223c64fc894d00d2216a7c701c34c5b8.tar
limox-59eff22a223c64fc894d00d2216a7c701c34c5b8.tar.zst
limox-59eff22a223c64fc894d00d2216a7c701c34c5b8.zip
Add debug symbols to default build
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")