mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-22 12:34:19 +00:00

Change-Id: I2f5f64aaf90caae936510e1179392a8835f493e0 Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
29 lines
537 B
Makefile
29 lines
537 B
Makefile
#
|
|
# Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
LIBC_SRCS := $(addprefix lib/libc/, \
|
|
abort.c \
|
|
assert.c \
|
|
exit.c \
|
|
memchr.c \
|
|
memcmp.c \
|
|
memcpy.c \
|
|
memmove.c \
|
|
memset.c \
|
|
printf.c \
|
|
putchar.c \
|
|
puts.c \
|
|
snprintf.c \
|
|
strchr.c \
|
|
strcmp.c \
|
|
strlcpy.c \
|
|
strlen.c \
|
|
strncmp.c \
|
|
strnlen.c \
|
|
strrchr.c)
|
|
|
|
INCLUDES += -Iinclude/lib/libc \
|
|
-Iinclude/lib/libc/$(ARCH) \
|