diff options
Diffstat (limited to 'arch/h8300/boot/Makefile')
-rw-r--r-- | arch/h8300/boot/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/h8300/boot/Makefile b/arch/h8300/boot/Makefile new file mode 100644 index 000000000000..65086d925ca7 --- /dev/null +++ b/arch/h8300/boot/Makefile | |||
@@ -0,0 +1,12 @@ | |||
1 | # arch/h8300/boot/Makefile | ||
2 | |||
3 | targets := vmlinux.srec vmlinux.bin | ||
4 | |||
5 | OBJCOPYFLAGS_vmlinux.srec := -Osrec | ||
6 | OBJCOPYFLAGS_vmlinux.bin := -Obinary | ||
7 | |||
8 | $(obj)/vmlinux.srec $(obj)/vmlinux.bin: vmlinux FORCE | ||
9 | $(call if_changed,objcopy) | ||
10 | @echo ' Kernel: $@ is ready' | ||
11 | |||
12 | CLEAN_FILES += arch/$(ARCH)/vmlinux.bin arch/$(ARCH)/vmlinux.srec | ||