mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
12869ecd5e
Pull in SPDX tag conversion from upstream dtc. This will replace the conversion done in the kernel tree copy in v5.2-rc2. This adds the following commits from upstream: 702c1b6c0e73 README.license: Update to reflect SPDX tag usage 4097bbffcf1d dtc: Add GPLv2 SPDX tags to files missing license text 94f87cd5b7c5 libfdt: Add dual GPL/BSD SPDX tags to files missing license text c4ffc05574b1 tests: Replace license boilerplate with SPDX tags a5ac29baacd2 pylibfdt: Replace dual GPLv2/BSD license boilerplate with SPDX tags 7fb0f4db2eb7 libfdt: Replace GPL/BSD boilerplate/reference with SPDX tags acfe84f2c47e dtc: Replace GPLv2 boilerplate/reference with SPDX tags Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Rob Herring <robh@kernel.org>
24 lines
467 B
Makefile
24 lines
467 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Makefile.dtc
|
|
#
|
|
# This is not a complete Makefile of itself. Instead, it is designed to
|
|
# be easily embeddable into other systems of Makefiles.
|
|
#
|
|
DTC_SRCS = \
|
|
checks.c \
|
|
data.c \
|
|
dtc.c \
|
|
flattree.c \
|
|
fstree.c \
|
|
livetree.c \
|
|
srcpos.c \
|
|
treesource.c \
|
|
util.c
|
|
|
|
ifneq ($(NO_YAML),1)
|
|
DTC_SRCS += yamltree.c
|
|
endif
|
|
|
|
DTC_GEN_SRCS = dtc-lexer.lex.c dtc-parser.tab.c
|
|
DTC_OBJS = $(DTC_SRCS:%.c=%.o) $(DTC_GEN_SRCS:%.c=%.o)
|