aboutsummaryrefslogtreecommitdiff
path: root/.build.mk
blob: 489d8fa71e73d8ad59d34d6394898ea042494e83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# MIT License, Copyright (c) 2021 Marvin Borner

# All preprocessor flags - enable using the custom config group below
ALL_PREPROCESSOR_FLAGS = \
    DEBUG_ALLOC \
    DEBUG_SCHEDULER

# All config options
ALL_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