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/Makefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/arch/h8300/boot/Makefile b/arch/h8300/boot/Makefile
deleted file mode 100644
index 0bb62e064eea..000000000000
--- a/arch/h8300/boot/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
1# arch/h8300/boot/Makefile
2
3targets := vmlinux.srec vmlinux.bin zImage
4subdir- := compressed
5
6OBJCOPYFLAGS_vmlinux.srec := -Osrec
7OBJCOPYFLAGS_vmlinux.bin := -Obinary
8OBJCOPYFLAGS_zImage := -O binary -R .note -R .comment -R .stab -R .stabstr -S
9
10$(obj)/vmlinux.srec $(obj)/vmlinux.bin: vmlinux FORCE
11 $(call if_changed,objcopy)
12 @echo ' Kernel: $@ is ready'
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
21CLEAN_FILES += arch/$(ARCH)/vmlinux.bin arch/$(ARCH)/vmlinux.srec
22