]> git.ipfire.org Git - thirdparty/u-boot.git/blame - scripts/dtc/Makefile
Merge tag 'u-boot-socfpga-next-20240319' of https://source.denx.de/u-boot/custodians...
[thirdparty/u-boot.git] / scripts / dtc / Makefile
CommitLineData
82bca362 1# SPDX-License-Identifier: GPL-2.0
c0e032e0
TR
2# 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
587e4a42 12HOST_EXTRACFLAGS := -I$(src)/libfdt
c0e032e0 13
587e4a42
TR
14# 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)
c0e032e0
TR
17
18# dependencies on generated files need to be listed explicitly
19$(obj)/dtc-lexer.lex.o: $(obj)/dtc-parser.tab.h
20
15b97f5c 21# Added for U-Boot
48bf738e 22ifeq ($(PYTHON_ENABLE),y)
d6a0c78a 23subdir-$(CONFIG_PYLIBFDT) += pylibfdt
48bf738e 24endif