Blame Makefile.dtc

Packit Service 0ee8e1
# SPDX-License-Identifier: GPL-2.0-or-later
Packit 2ad57b
# Makefile.dtc
Packit 2ad57b
#
Packit 2ad57b
# This is not a complete Makefile of itself.  Instead, it is designed to
Packit 2ad57b
# be easily embeddable into other systems of Makefiles.
Packit 2ad57b
#
Packit 2ad57b
DTC_SRCS = \
Packit 2ad57b
	checks.c \
Packit 2ad57b
	data.c \
Packit 2ad57b
	dtc.c \
Packit 2ad57b
	flattree.c \
Packit 2ad57b
	fstree.c \
Packit 2ad57b
	livetree.c \
Packit 2ad57b
	srcpos.c \
Packit 2ad57b
	treesource.c \
Packit 2ad57b
	util.c
Packit 2ad57b
Packit Service 0ee8e1
ifneq ($(NO_YAML),1)
Packit Service 0ee8e1
DTC_SRCS += yamltree.c
Packit Service 0ee8e1
endif
Packit Service 0ee8e1
Packit 2ad57b
DTC_GEN_SRCS = dtc-lexer.lex.c dtc-parser.tab.c
Packit 2ad57b
DTC_OBJS = $(DTC_SRCS:%.c=%.o) $(DTC_GEN_SRCS:%.c=%.o)