commit 93024dfd816b365140b2bff83b74268d3006d7c3
parent c085a6a7da659b2eb5a1510748c2d6487bdf51d5
Author: superpozycja <anna@superpozycja.net>
Date: Sun, 23 Feb 2025 01:33:50 +0100
makefile: add debug symbols to compilation
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/makefile b/makefile
@@ -6,7 +6,7 @@ all: lib challs
lib: $(LIB_SRC) dirs
$(foreach file,$(LIB_SRC),$(CC) -c -shared \
- -o bin/lib/lib$(notdir $(subst .c,, $(file))).so $(file);)
+ -o bin/lib/lib$(notdir $(subst .c,, $(file))).so $(file) -g;)
lib_objs: lib dirs
@@ -21,7 +21,7 @@ challs: $(CHALLS_SRC) dirs lib lib_objs
-Ilib/\
-Lbin/lib\
$(foreach lib_name,$(LIB_OBJS),\
- -l$(subst lib,,$(subst .so,,$(notdir $(lib_name)))));)
+ -l$(subst lib,,$(subst .so,,$(notdir $(lib_name))))) -g;)
dirs:
mkdir -p bin