diff options
author | Rob Herring <robh@kernel.org> | 2015-10-06 18:52:24 -0400 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2015-10-27 17:12:15 -0400 |
commit | 1aa4c51e468e3d38122c2da2f32b54a084d0efdb (patch) | |
tree | 6f141e453086c70a6ed2ae658e201bff581ce714 | |
parent | 0395c1aacfbaa0bc959faf415c7d95f20bb4a377 (diff) |
metag: use common make variables for dtb builds
Use dtb-y and always make variables to build dtbs instead of explicit
dtbs rule. This is in preparation to support building all dtbs.
Signed-off-by: Rob Herring <robh@kernel.org>
Cc: James Hogan <james.hogan@imgtec.com>
Cc: linux-metag@vger.kernel.org
-rw-r--r-- | arch/metag/Makefile | 2 | ||||
-rw-r--r-- | arch/metag/boot/dts/Makefile | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/arch/metag/Makefile b/arch/metag/Makefile index 9739857bdedc..033a58214119 100644 --- a/arch/metag/Makefile +++ b/arch/metag/Makefile | |||
@@ -72,7 +72,7 @@ $(boot_targets): vmlinux | |||
72 | $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@ | 72 | $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@ |
73 | 73 | ||
74 | dtbs: scripts | 74 | dtbs: scripts |
75 | $(Q)$(MAKE) $(build)=$(boot)/dts dtbs | 75 | $(Q)$(MAKE) $(build)=$(boot)/dts |
76 | 76 | ||
77 | archclean: | 77 | archclean: |
78 | $(Q)$(MAKE) $(clean)=$(boot) | 78 | $(Q)$(MAKE) $(clean)=$(boot) |
diff --git a/arch/metag/boot/dts/Makefile b/arch/metag/boot/dts/Makefile index 72c121879426..2533c38a691c 100644 --- a/arch/metag/boot/dts/Makefile +++ b/arch/metag/boot/dts/Makefile | |||
@@ -12,11 +12,7 @@ endif | |||
12 | dtb-$(CONFIG_METAG_BUILTIN_DTB) += $(builtindtb-y).dtb | 12 | dtb-$(CONFIG_METAG_BUILTIN_DTB) += $(builtindtb-y).dtb |
13 | obj-$(CONFIG_METAG_BUILTIN_DTB) += $(builtindtb-y).dtb.o | 13 | obj-$(CONFIG_METAG_BUILTIN_DTB) += $(builtindtb-y).dtb.o |
14 | 14 | ||
15 | targets += dtbs | ||
16 | targets += $(dtb-y) | ||
17 | |||
18 | .SECONDARY: $(obj)/$(builtindtb-y).dtb.S | 15 | .SECONDARY: $(obj)/$(builtindtb-y).dtb.S |
19 | 16 | ||
20 | dtbs: $(addprefix $(obj)/, $(dtb-y)) | 17 | always += $(dtb-y) |
21 | |||
22 | clean-files += *.dtb *.dtb.S | 18 | clean-files += *.dtb *.dtb.S |