We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fec50db commit 0dc1670Copy full SHA for 0dc1670
arch/arm64/Makefile
@@ -154,6 +154,10 @@ libs-$(CONFIG_EFI_STUB) += $(objtree)/drivers/firmware/efi/libstub/lib.a
154
# Default target when executing plain make
155
boot := arch/arm64/boot
156
157
+BOOT_TARGETS := Image vmlinuz.efi
158
+
159
+PHONY += $(BOOT_TARGETS)
160
161
ifeq ($(CONFIG_EFI_ZBOOT),)
162
KBUILD_IMAGE := $(boot)/Image.gz
163
else
@@ -163,7 +167,7 @@ endif
167
all: $(notdir $(KBUILD_IMAGE))
164
168
165
169
vmlinuz.efi: Image
166
-Image vmlinuz.efi: vmlinux
170
+$(BOOT_TARGETS): vmlinux
171
$(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
172
173
Image.%: Image
0 commit comments