hardened_malloc/test/Makefile

19 lines
314 B
Makefile
Raw Normal View History

2018-11-17 01:55:35 +05:30
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)
2018-10-04 12:10:51 +05:30
EXECUTABLES := \
offset \
2019-05-01 02:17:06 +05:30
mallinfo \
large_array_growth
2018-10-04 12:10:51 +05:30
all: $(EXECUTABLES)
clean:
rm -f $(EXECUTABLES)