stdlib.mk 479 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
8
9
10
11
12
13
14
15
16
17
18
19
#

STDLIB_SRCS	:=	$(addprefix lib/stdlib/,	\
			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/stdlib		\
			-Iinclude/lib/stdlib/sys