diff options
Diffstat (limited to 'arch/h8300/boot/Makefile')
-rw-r--r-- | arch/h8300/boot/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/arch/h8300/boot/Makefile b/arch/h8300/boot/Makefile index 65086d925ca7..0bb62e064eea 100644 --- a/arch/h8300/boot/Makefile +++ b/arch/h8300/boot/Makefile | |||
@@ -1,12 +1,22 @@ | |||
1 | # arch/h8300/boot/Makefile | 1 | # arch/h8300/boot/Makefile |
2 | 2 | ||
3 | targets := vmlinux.srec vmlinux.bin | 3 | targets := vmlinux.srec vmlinux.bin zImage |
4 | subdir- := compressed | ||
4 | 5 | ||
5 | OBJCOPYFLAGS_vmlinux.srec := -Osrec | 6 | OBJCOPYFLAGS_vmlinux.srec := -Osrec |
6 | OBJCOPYFLAGS_vmlinux.bin := -Obinary | 7 | OBJCOPYFLAGS_vmlinux.bin := -Obinary |
8 | OBJCOPYFLAGS_zImage := -O binary -R .note -R .comment -R .stab -R .stabstr -S | ||
7 | 9 | ||
8 | $(obj)/vmlinux.srec $(obj)/vmlinux.bin: vmlinux FORCE | 10 | $(obj)/vmlinux.srec $(obj)/vmlinux.bin: vmlinux FORCE |
9 | $(call if_changed,objcopy) | 11 | $(call if_changed,objcopy) |
10 | @echo ' Kernel: $@ is ready' | 12 | @echo ' Kernel: $@ is ready' |
11 | 13 | ||
14 | $(obj)/zImage: $(obj)/compressed/vmlinux FORCE | ||
15 | $(call if_changed,objcopy) | ||
16 | @echo 'Kernel: $@ is ready' | ||
17 | |||
18 | $(obj)/compressed/vmlinux: FORCE | ||
19 | $(Q)$(MAKE) $(build)=$(obj)/compressed $@ | ||
20 | |||
12 | CLEAN_FILES += arch/$(ARCH)/vmlinux.bin arch/$(ARCH)/vmlinux.srec | 21 | CLEAN_FILES += arch/$(ARCH)/vmlinux.bin arch/$(ARCH)/vmlinux.srec |
22 | |||