2018-05-19 14:13:54 +02:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2017-09-23 12:52:44 -04: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 11:46:27 -04:00
|
|
|
HOST_EXTRACFLAGS := -I$(src)/libfdt
|
2017-09-23 12:52:44 -04:00
|
|
|
|
2020-03-27 11:46:27 -04: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 12:52:44 -04:00
|
|
|
|
|
|
|
# dependencies on generated files need to be listed explicitly
|
|
|
|
$(obj)/dtc-lexer.lex.o: $(obj)/dtc-parser.tab.h
|
|
|
|
|
2017-10-17 13:42:43 +09:00
|
|
|
# Added for U-Boot
|
2017-10-17 13:42:44 +09:00
|
|
|
subdir-$(CONFIG_PYLIBFDT) += pylibfdt
|