1#
2# Std library overrides Makefile
3#
4
5ifeq ($(CHRE_STD_OVERRIDES_ALLOWED),true)
6# Common Compiler Flags ########################################################
7COMMON_CFLAGS += -I$(CHRE_PREFIX)/std_overrides/include
8
9# Common Source Files ##########################################################
10COMMON_SRCS += $(CHRE_PREFIX)/std_overrides/stdlib_wrapper.cc
11endif
12
13