1# 2# arch/microblaze/boot/Makefile 3# 4 5targets := linux.bin linux.bin.gz 6 7OBJCOPYFLAGS_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 17clean-kernel += linux.bin linux.bin.gz 18