hardened_malloc/test/Makefile
2019-05-05 08:37:55 -04:00

19 lines
314 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 \
mallinfo \
large_array_growth
all: $(EXECUTABLES)
clean:
rm -f $(EXECUTABLES)