blob: 9c467b096f035e7ba68dbb4edfb24e8cd531c1c8 [file] [log] [blame]
Rob Herring12869ec2019-06-21 08:18:32 -06001# SPDX-License-Identifier: GPL-2.0-or-later
David Gibsona4da2e32007-12-18 15:06:42 +11002# Makefile.dtc
3#
4# This is not a complete Makefile of itself. Instead, it is designed to
5# be easily embeddable into other systems of Makefiles.
6#
Stephen Warrencd296722012-09-28 21:25:59 +00007DTC_SRCS = \
8 checks.c \
9 data.c \
10 dtc.c \
11 flattree.c \
12 fstree.c \
13 livetree.c \
14 srcpos.c \
15 treesource.c \
16 util.c
17
Rob Herringf8589272018-09-13 08:59:25 -050018ifneq ($(NO_YAML),1)
19DTC_SRCS += yamltree.c
20endif
21
David Gibsoned95d742008-08-07 12:24:17 +100022DTC_GEN_SRCS = dtc-lexer.lex.c dtc-parser.tab.c
David Gibsona4da2e32007-12-18 15:06:42 +110023DTC_OBJS = $(DTC_SRCS:%.c=%.o) $(DTC_GEN_SRCS:%.c=%.o)