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 strchr.c \ 20 strcmp.c \ 21 strlen.c \ 22 strncmp.c \ 23 strnlen.c \ 24 subr_prf.c) 25 26INCLUDES += -Iinclude/lib/libc \ 27 -Iinclude/lib/libc/sys 28