diff options
author | Marvin Borner | 2021-04-27 19:15:45 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-27 19:15:45 +0200 |
commit | e9d82dd950cb23e79c3425a636a5ddc95b65f904 (patch) | |
tree | 18ed4e85257b4147f617ec49d58b56452bfb9f6d /Makefile | |
parent | b1a7c10ba575384e8f4ffb6b642783bfbcf51b32 (diff) |
Better makefile debugging structure
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -14,10 +14,11 @@ BUILD = $(PWD)/build/ KERNEL = $(PWD)/kernel/ LIBS = $(PWD)/libs/ -all: compile +ifeq ($(DEBUG), 1) + CFLAGS_DEFAULT += -Wno-error -ggdb3 -s -fsanitize=undefined -fstack-protector-all +endif -debug: CFLAGS_DEFAULT += -Wno-error -ggdb3 -s -fsanitize=undefined -fstack-protector-all -debug: compile +all: compile export |