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 strlen.c \ 23 strncmp.c \ 24 strnlen.c \ 25 strrchr.c) 26 27INCLUDES += -Iinclude/lib/libc \ 28 -Iinclude/lib/libc/$(ARCH) \ 29