1# 2# Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved. 3# 4# SPDX-License-Identifier: BSD-3-Clause 5# 6 7LIBC_SRCS := $(addprefix lib/libc/, \ 8 abort.c \ 9 assert.c \ 10 exit.c \ 11 memchr.c \ 12 memcmp.c \ 13 memcpy.c \ 14 memmove.c \ 15 memset.c \ 16 printf.c \ 17 putchar.c \ 18 puts.c \ 19 snprintf.c \ 20 strchr.c \ 21 strcmp.c \ 22 strlcpy.c \ 23 strlen.c \ 24 strncmp.c \ 25 strnlen.c \ 26 strrchr.c) 27 28INCLUDES += -Iinclude/lib/libc \ 29 -Iinclude/lib/libc/$(ARCH) \ 30