mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2024-10-01 01:36:01 -04:00
17 lines
274 B
Makefile
17 lines
274 B
Makefile
CONFIG_SLAB_CANARY := true
|
|
|
|
ifeq (,$(filter $(CONFIG_SLAB_CANARY),true false))
|
|
$(error CONFIG_SLAB_CANARY must be true or false)
|
|
endif
|
|
|
|
CPPFLAGS += \
|
|
-DSLAB_CANARY=$(CONFIG_SLAB_CANARY)
|
|
|
|
EXECUTABLES := \
|
|
offset
|
|
|
|
all: $(EXECUTABLES)
|
|
|
|
clean:
|
|
rm -f $(EXECUTABLES)
|