hardened_malloc/test/Makefile
2018-11-16 15:40:45 -05:00

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)