mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-23 21:44:15 +00:00

TF Makefile was linking all the objects files generated for the fdt library instead of creating a static library that could be used in the linking stage. Change-Id: If3705bba188ec39e1fbf2322a7f2a9a941e1b90d Signed-off-by: Roberto Vargas <roberto.vargas@arm.com>
19 lines
374 B
Makefile
19 lines
374 B
Makefile
#
|
|
# Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
LIBFDT_SRCS := $(addprefix lib/libfdt/, \
|
|
fdt.c \
|
|
fdt_addresses.c \
|
|
fdt_empty_tree.c \
|
|
fdt_ro.c \
|
|
fdt_rw.c \
|
|
fdt_strerror.c \
|
|
fdt_sw.c \
|
|
fdt_wip.c) \
|
|
|
|
INCLUDES += -Iinclude/lib/libfdt
|
|
|
|
$(eval $(call MAKE_LIB,fdt))
|