blob: faa72d95e28e36c3490cb95b45d53693ed5f5a1b [file] [log] [blame]
Eugeniu Rosca4299d522018-05-19 14:13:54 +02001# SPDX-License-Identifier: GPL-2.0
Tom Rinibd391732017-09-23 12:52:44 -04002# scripts/dtc makefile
3
4hostprogs-y := dtc
5always := $(hostprogs-y)
6
7dtc-objs := dtc.o flattree.o fstree.o data.o livetree.o treesource.o \
8 srcpos.o checks.o util.o
9dtc-objs += dtc-lexer.lex.o dtc-parser.tab.o
10
11# Source files need to get at the userspace version of libfdt_env.h to compile
Tom Rini5d4ecf22020-03-27 11:46:27 -040012HOST_EXTRACFLAGS := -I$(src)/libfdt
Tom Rinibd391732017-09-23 12:52:44 -040013
Tom Rini5d4ecf22020-03-27 11:46:27 -040014# Generated files need one more search path to include headers in source tree
15HOSTCFLAGS_dtc-lexer.lex.o := -I$(src)
16HOSTCFLAGS_dtc-parser.tab.o := -I$(src)
Tom Rinibd391732017-09-23 12:52:44 -040017
18# dependencies on generated files need to be listed explicitly
19$(obj)/dtc-lexer.lex.o: $(obj)/dtc-parser.tab.h
20
Masahiro Yamada47ae5392017-10-17 13:42:43 +090021# Added for U-Boot
Simon Glass2d2d81c2023-08-31 11:20:52 -060022ifeq ($(PYTHON_ENABLE),y)
Masahiro Yamada87247af2017-10-17 13:42:44 +090023subdir-$(CONFIG_PYLIBFDT) += pylibfdt
Simon Glass2d2d81c2023-08-31 11:20:52 -060024endif