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 mem.c \ 12 printf.c \ 13 putchar.c \ 14 puts.c \ 15 strchr.c \ 16 strcmp.c \ 17 strlen.c \ 18 strncmp.c \ 19 strnlen.c \ 20 subr_prf.c) 21 22INCLUDES += -Iinclude/lib/libc \ 23 -Iinclude/lib/libc/sys 24