mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-27 15:24:54 +00:00

Align entire TF-A to use Arm in copyright header. Change-Id: Ief9992169efdab61d0da6bd8c5180de7a4bc2244 Signed-off-by: Govindraj Raja <govindraj.raja@arm.com>
42 lines
763 B
Makefile
42 lines
763 B
Makefile
#
|
|
# Copyright (c) 2016-2021, 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 \
|
|
memcpy_s.c \
|
|
memmove.c \
|
|
memrchr.c \
|
|
memset.c \
|
|
printf.c \
|
|
putchar.c \
|
|
puts.c \
|
|
snprintf.c \
|
|
strchr.c \
|
|
strcmp.c \
|
|
strlcat.c \
|
|
strlcpy.c \
|
|
strlen.c \
|
|
strncmp.c \
|
|
strnlen.c \
|
|
strrchr.c \
|
|
strtok.c \
|
|
strtoul.c \
|
|
strtoll.c \
|
|
strtoull.c \
|
|
strtol.c)
|
|
|
|
ifeq (${ARCH},aarch64)
|
|
LIBC_SRCS += $(addprefix lib/libc/aarch64/, \
|
|
setjmp.S)
|
|
endif
|
|
|
|
INCLUDES += -Iinclude/lib/libc \
|
|
-Iinclude/lib/libc/$(ARCH) \
|