aboutsummaryrefslogtreecommitdiff
path: root/.build.mk
diff options
context:
space:
mode:
authorMarvin Borner2021-05-18 18:37:19 +0200
committerMarvin Borner2021-05-18 18:37:50 +0200
commit4b4bfec8a312132acc84b5166998d0cfa7c01931 (patch)
treeeeb494cf539b4bfdb6dae23a34f5f1c5d7167667 /.build.mk
parenteb13f2a8f536fecf918699bc19b3087a78a417d6 (diff)
Improved entire building chain (especially debugging)
Diffstat (limited to '.build.mk')
-rw-r--r--.build.mk28
1 files changed, 28 insertions, 0 deletions
diff --git a/.build.mk b/.build.mk
new file mode 100644
index 0000000..8d34dbb
--- /dev/null
+++ b/.build.mk
@@ -0,0 +1,28 @@
+# MIT License, Copyright (c) 2021 Marvin Borner
+
+# All preprocessor flags - enable using the custom config group below
+ALL_PREPROCESSOR_FLAGS = \
+ DEBUG_ALLOC \
+ DEBUG_SCHEDULER
+
+# Default configs
+CONFIG_CACHE ?=
+CONFIG_EXTRA_CFLAGS ?=
+CONFIG_USE_PIE ?=
+
+# Specific config groups
+ifeq ($(CONFIG), debug)
+ CONFIG_OPTIMIZATION ?= -Ofast
+ CONFIG_EXTRA_CFLAGS ?= -Wno-error -ggdb3 -s -fsanitize=undefined -fstack-protector-all
+ CONFIG_CACHE ?= ccache
+else ifeq ($(CONFIG), dev)
+ CONFIG_OPTIMIZATION ?= -finline -finline-functions -Ofast
+ CONFIG_CACHE ?= ccache
+else ifeq ($(CONFIG), release)
+ CONFIG_OPTIMIZATION ?= -finline -finline-functions -Ofast
+ CONFIG_STRIP ?= true
+ CONFIG_CACHE ?= ccache
+else ifeq ($(CONFIG), custom)
+ DEBUG_ALLOC ?= true
+ DEBUG_SCHEDULER ?= true
+endif