hardened_malloc/test/Makefile

18 lines
289 B
Makefile
Raw Normal View History

2018-11-16 20:25:35 +00:00
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 06:40:51 +00:00
EXECUTABLES := \
offset \
mallinfo
2018-10-04 06:40:51 +00:00
all: $(EXECUTABLES)
clean:
rm -f $(EXECUTABLES)