You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
368 B
13 lines
368 B
#
|
|
# Std library overrides Makefile
|
|
#
|
|
|
|
ifeq ($(CHRE_STD_OVERRIDES_ALLOWED),true)
|
|
# Common Compiler Flags ########################################################
|
|
COMMON_CFLAGS += -I$(CHRE_PREFIX)/std_overrides/include
|
|
|
|
# Common Source Files ##########################################################
|
|
COMMON_SRCS += $(CHRE_PREFIX)/std_overrides/stdlib_wrapper.cc
|
|
endif
|
|
|