tools headers UAPI: Sync linux/prctl.h with the kernel sources
[linux-2.6-microblaze.git] / scripts / Makefile.dtbinst
1 # SPDX-License-Identifier: GPL-2.0
2 # ==========================================================================
3 # Installing dtb files
4 #
5 # Installs all dtb files listed in $(dtb-y) either in the
6 # INSTALL_DTBS_PATH directory or the default location:
7 #
8 #   $INSTALL_PATH/dtbs/$KERNELRELEASE
9 # ==========================================================================
10
11 src := $(obj)
12
13 PHONY := __dtbs_install
14 __dtbs_install:
15
16 include include/config/auto.conf
17 include $(srctree)/scripts/Kbuild.include
18 include $(src)/Makefile
19
20 dtbs    := $(addprefix $(dst)/, $(dtb-y) $(if $(CONFIG_OF_ALL_DTBS),$(dtb-)))
21 subdirs := $(addprefix $(obj)/, $(subdir-y) $(subdir-m))
22
23 __dtbs_install: $(dtbs) $(subdirs)
24         @:
25
26 quiet_cmd_dtb_install = INSTALL $@
27       cmd_dtb_install = install -D $< $@
28
29 $(dst)/%.dtb: $(obj)/%.dtb
30         $(call cmd,dtb_install)
31
32 $(dst)/%.dtbo: $(obj)/%.dtbo
33         $(call cmd,dtb_install)
34
35 PHONY += $(subdirs)
36 $(subdirs):
37         $(Q)$(MAKE) $(dtbinst)=$@ dst=$(patsubst $(obj)/%,$(dst)/%,$@)
38
39 .PHONY: $(PHONY)