aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2021-04-27 19:15:45 +0200
committerMarvin Borner2021-04-27 19:15:45 +0200
commite9d82dd950cb23e79c3425a636a5ddc95b65f904 (patch)
tree18ed4e85257b4147f617ec49d58b56452bfb9f6d /Makefile
parentb1a7c10ba575384e8f4ffb6b642783bfbcf51b32 (diff)
Better makefile debugging structure
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 5d8d616..4583234 100644
--- a/Makefile
+++ b/Makefile
@@ -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