libc.mk 503 Bytes
Newer Older
1
#
2
# Copyright (c) 2016-2018, 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
LIBC_SRCS	:=	$(addprefix lib/libc/,	\
8
9
10
			abort.c				\
			assert.c			\
			exit.c				\
11
12
13
14
15
			memchr.c			\
			memcmp.c			\
			memcpy.c			\
			memmove.c			\
			memset.c			\
16
17
18
19
20
21
22
			printf.c			\
			putchar.c			\
			puts.c				\
			strchr.c			\
			strcmp.c			\
			strlen.c			\
			strncmp.c			\
23
			strnlen.c			\
24
			subr_prf.c)
25

26
INCLUDES	+=	-Iinclude/lib/libc		\
27
			-Iinclude/lib/libc/$(ARCH)	\