2018-05-19 12:13:54 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2017-09-23 16:52:44 +00:00
|
|
|
# scripts/dtc makefile
|
|
|
|
|
|
|
|
hostprogs-y := dtc
|
|
|
|
always := $(hostprogs-y)
|
|
|
|
|
|
|
|
dtc-objs := dtc.o flattree.o fstree.o data.o livetree.o treesource.o \
|
|
|
|
srcpos.o checks.o util.o
|
|
|
|
dtc-objs += dtc-lexer.lex.o dtc-parser.tab.o
|
|
|
|
|
|
|
|
# Source files need to get at the userspace version of libfdt_env.h to compile
|
2020-03-27 15:46:27 +00:00
|
|
|
HOST_EXTRACFLAGS := -I$(src)/libfdt
|
2017-09-23 16:52:44 +00:00
|
|
|
|
2020-03-27 15:46:27 +00:00
|
|
|
# Generated files need one more search path to include headers in source tree
|
|
|
|
HOSTCFLAGS_dtc-lexer.lex.o := -I$(src)
|
|
|
|
HOSTCFLAGS_dtc-parser.tab.o := -I$(src)
|
2017-09-23 16:52:44 +00:00
|
|
|
|
|
|
|
# dependencies on generated files need to be listed explicitly
|
|
|
|
$(obj)/dtc-lexer.lex.o: $(obj)/dtc-parser.tab.h
|
|
|
|
|
2017-10-17 04:42:43 +00:00
|
|
|
# Added for U-Boot
|
2017-10-17 04:42:44 +00:00
|
|
|
subdir-$(CONFIG_PYLIBFDT) += pylibfdt
|