################################### tell Emacs this is a -*- makefile-gmake -*-
#
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: LicenseRef-NvidiaProprietary
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto.  Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
#
# Device Tree Build Makefile
#
###############################################################################
#
# The input parameters:
#     DT_FLAVOR: Devicetree Makefile flavor. The valid values are "generic" and "legacy".
#
###############################################################################

# Set default DT_FLAVOR to generic if not provided
DT_FLAVOR ?= generic

this_makefile_path := $(abspath $(shell dirname $(lastword $(MAKEFILE_LIST))))

include $(this_makefile_path)/Makefile.$(DT_FLAVOR)
