mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-26 14:55:16 +00:00
Merge "build(libfdt): introduce include guards" into integration
This commit is contained in:
commit
09a1cc2a0b
1 changed files with 16 additions and 12 deletions
|
@ -1,19 +1,23 @@
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016, Arm Limited and Contributors. All rights reserved.
|
# Copyright (c) 2016-2024, Arm Limited and Contributors. All rights reserved.
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: BSD-3-Clause
|
# SPDX-License-Identifier: BSD-3-Clause
|
||||||
#
|
#
|
||||||
|
|
||||||
LIBFDT_SRCS := $(addprefix lib/libfdt/, \
|
ifndef libfdt-mk
|
||||||
fdt.c \
|
libfdt-mk := 1
|
||||||
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
|
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)
|
||||||
|
|
||||||
$(eval $(call MAKE_LIB,fdt))
|
INCLUDES += -Iinclude/lib/libfdt
|
||||||
|
|
||||||
|
$(eval $(call MAKE_LIB,fdt))
|
||||||
|
endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue