libc.mk 471 Bytes
Newer Older
1
#
2
# Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
3
#
dp-arm's avatar
dp-arm committed
4
# SPDX-License-Identifier: BSD-3-Clause
5
6
#

7
LIBC_SRCS	:=	$(addprefix lib/libc/,	\
8
9
10
11
12
13
14
15
16
17
18
19
			abort.c				\
			assert.c			\
			exit.c				\
			mem.c				\
			printf.c			\
			putchar.c			\
			puts.c				\
			sscanf.c			\
			strchr.c			\
			strcmp.c			\
			strlen.c			\
			strncmp.c			\
20
			strnlen.c			\
21
22
			subr_prf.c			\
			timingsafe_bcmp.c)
23

24
25
INCLUDES	+=	-Iinclude/lib/libc		\
			-Iinclude/lib/libc/sys