mirror of
https://github.com/CTCaer/switch-l4t-atf.git
synced 2024-12-11 04:13:48 +00:00
468e238275
They only contained one function that is easily integrated in the private library header and the existing architectural C files. This also helps making the library more portable, as the Makefile of the library now doesn't use the variable INCLUDES, which is specific to this codebase and doesn't respect the namespace of the library. Change-Id: I22228e6a97e9b4f346f5cd8947609263e8df71d8 Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
13 lines
329 B
Makefile
13 lines
329 B
Makefile
#
|
|
# Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
XLAT_TABLES_LIB_SRCS := $(addprefix lib/xlat_tables_v2/, \
|
|
${ARCH}/enable_mmu.S \
|
|
${ARCH}/xlat_tables_arch.c \
|
|
xlat_tables_context.c \
|
|
xlat_tables_core.c \
|
|
xlat_tables_utils.c)
|