summaryrefslogtreecommitdiff
path: root/scripts/dtc/Makefile.dtc
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2020-03-13 08:46:42 -0500
committerRob Herring <robh@kernel.org>2020-03-13 08:55:53 -0500
commit78154212673308f6941dbd4ecefdca5a9db60e6e (patch)
tree64b9510d1b0ead9c8e6696072f15858187a93110 /scripts/dtc/Makefile.dtc
parent431a30b7d495be19790bb347e68a87d03599fe8e (diff)
scripts/dtc: Remove unused makefile fragments
The Makefile.dtc and Makefile.libfdt fragments from upstream dtc aren't used by the kernel build, so let's remove them and stop syncing them. Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'scripts/dtc/Makefile.dtc')
-rw-r--r--scripts/dtc/Makefile.dtc23
1 files changed, 0 insertions, 23 deletions
diff --git a/scripts/dtc/Makefile.dtc b/scripts/dtc/Makefile.dtc
deleted file mode 100644
index 9c467b096f03..000000000000
--- a/scripts/dtc/Makefile.dtc
+++ /dev/null
@@ -1,23 +0,0 @@
-# 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)