Newer
Older
arm-trusted-firmware / lib / stdlib / stdlib.mk
@dp-arm dp-arm on 3 May 2017 479 bytes Use SPDX license identifiers
#
# 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