aboutsummaryrefslogtreecommitdiffstats
path: root/arch/h8300/boot/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'arch/h8300/boot/Makefile')
-rw-r--r--arch/h8300/boot/Makefile12
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
3targets := vmlinux.srec vmlinux.bin 3targets := vmlinux.srec vmlinux.bin zImage
4subdir- := compressed
4 5
5OBJCOPYFLAGS_vmlinux.srec := -Osrec 6OBJCOPYFLAGS_vmlinux.srec := -Osrec
6OBJCOPYFLAGS_vmlinux.bin := -Obinary 7OBJCOPYFLAGS_vmlinux.bin := -Obinary
8OBJCOPYFLAGS_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
12CLEAN_FILES += arch/$(ARCH)/vmlinux.bin arch/$(ARCH)/vmlinux.srec 21CLEAN_FILES += arch/$(ARCH)/vmlinux.bin arch/$(ARCH)/vmlinux.srec
22