1# 2# Copyright (c) 2016-2025, Arm Limited and Contributors. All rights reserved. 3# 4# SPDX-License-Identifier: BSD-3-Clause 5# 6 7ifndef libfdt-mk 8 libfdt-mk := $(lastword $(MAKEFILE_LIST)) 9 libfdt-root := $(patsubst %/,%,$(dir $(libfdt-mk))) 10 11 include $(libfdt-root)/Makefile.libfdt 12 13 LIBFDT_SRCS := $(addprefix $(libfdt-root)/,$(LIBFDT_SRCS)) 14 INCLUDES += -I$(libfdt-root) 15 16 $(eval $(call MAKE_LIB,fdt)) 17endif 18