diff options
author | xengineering <me@xengineering.eu> | 2023-01-23 20:35:17 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-01-23 20:35:17 +0100 |
commit | 59eff22a223c64fc894d00d2216a7c701c34c5b8 (patch) | |
tree | 0e0dac25bfb8bd14ccdfd5dc495ef05178b5227e /Makefile | |
parent | c18be301f06adad1a6eacbb7d02181599f2df2b4 (diff) | |
download | limox-59eff22a223c64fc894d00d2216a7c701c34c5b8.tar limox-59eff22a223c64fc894d00d2216a7c701c34c5b8.tar.zst limox-59eff22a223c64fc894d00d2216a7c701c34c5b8.zip |
Add debug symbols to default build
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") |