blob: ded3d7459715911c83d37237dce0bdb8aabd38b0 [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
Roberto Vargas0f8f9852018-05-08 10:27:10 +01007LIBC_SRCS := $(addprefix lib/libc/, \
Dan Handleyd7b59e42016-06-02 17:15:13 +01008 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
Roberto Vargas0f8f9852018-05-08 10:27:10 +010024INCLUDES += -Iinclude/lib/libc \
25 -Iinclude/lib/libc/sys