blob: 82116235430097f6d5b7c7b2ffda67deb6930990 [file] [log] [blame]
Dan Handleyd7b59e42016-06-02 17:15:13 +01001#
Sandrine Bailleuxccfc8292017-01-24 10:18:01 +00002# Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
Dan Handleyd7b59e42016-06-02 17:15:13 +01003#
dp-armfa3cf0b2017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Dan Handleyd7b59e42016-06-02 17:15:13 +01005#
6
7STDLIB_SRCS := $(addprefix lib/stdlib/, \
8 abort.c \
9 assert.c \
10 exit.c \
11 mem.c \
12 printf.c \
13 putchar.c \
14 puts.c \
15 sscanf.c \
16 strchr.c \
17 strcmp.c \
18 strlen.c \
19 strncmp.c \
Sandrine Bailleuxccfc8292017-01-24 10:18:01 +000020 strnlen.c \
Antonio Nino Diaz2165a3e2017-01-16 13:25:38 +000021 subr_prf.c \
22 timingsafe_bcmp.c)
Dan Handleyd7b59e42016-06-02 17:15:13 +010023
24INCLUDES += -Iinclude/lib/stdlib \
25 -Iinclude/lib/stdlib/sys