summaryrefslogtreecommitdiff
path: root/lib/stdlib/stdlib.mk
blob: 82116235430097f6d5b7c7b2ffda67deb6930990 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#

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			\
			strnlen.c			\
			subr_prf.c			\
			timingsafe_bcmp.c)

INCLUDES	+=	-Iinclude/lib/stdlib		\
			-Iinclude/lib/stdlib/sys