diff options
Diffstat (limited to 'arch/microblaze/boot/Makefile')
| -rw-r--r-- | arch/microblaze/boot/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/microblaze/boot/Makefile b/arch/microblaze/boot/Makefile new file mode 100644 index 000000000000..844edf406d34 --- /dev/null +++ b/arch/microblaze/boot/Makefile | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | # | ||
| 2 | # arch/microblaze/boot/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | targets := linux.bin linux.bin.gz | ||
| 6 | |||
| 7 | OBJCOPYFLAGS_linux.bin := -O binary | ||
| 8 | |||
| 9 | $(obj)/linux.bin: vmlinux FORCE | ||
| 10 | $(call if_changed,objcopy) | ||
| 11 | @echo 'Kernel: $@ is ready' ' (#'`cat .version`')' | ||
| 12 | |||
| 13 | $(obj)/linux.bin.gz: $(obj)/linux.bin FORCE | ||
| 14 | $(call if_changed,gzip) | ||
| 15 | @echo 'Kernel: $@ is ready' ' (#'`cat .version`')' | ||
| 16 | |||
| 17 | clean-kernel += linux.bin linux.bin.gz | ||
