Merge tag 'x86_entry_for_5.8' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
[linux/fpc-iii.git] / scripts / Makefile.dtbinst
blob50d580d77ae920b9c96d52639ec3b229082707db
1 # SPDX-License-Identifier: GPL-2.0
2 # ==========================================================================
3 # Installing dtb files
5 # Installs all dtb files listed in $(dtb-y) either in the
6 # INSTALL_DTBS_PATH directory or the default location:
8 #   $INSTALL_PATH/dtbs/$KERNELRELEASE
9 # ==========================================================================
11 src := $(obj)
13 PHONY := __dtbs_install
14 __dtbs_install:
16 include include/config/auto.conf
17 include scripts/Kbuild.include
18 include $(src)/Makefile
20 dtbs    := $(addprefix $(dst)/, $(dtb-y) $(if $(CONFIG_OF_ALL_DTBS),$(dtb-)))
21 subdirs := $(addprefix $(obj)/, $(subdir-y) $(subdir-m))
23 __dtbs_install: $(dtbs) $(subdirs)
24         @:
26 quiet_cmd_dtb_install = INSTALL $@
27       cmd_dtb_install = install -D $< $@
29 $(dst)/%.dtb: $(obj)/%.dtb
30         $(call cmd,dtb_install)
32 PHONY += $(subdirs)
33 $(subdirs):
34         $(Q)$(MAKE) $(dtbinst)=$@ dst=$(patsubst $(obj)/%,$(dst)/%,$@)
36 .PHONY: $(PHONY)