| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # arch/h8300/boot/Makefile | 
 | 2 |  | 
| Yoshinori Sato | 97a572b | 2007-05-06 14:50:36 -0700 | [diff] [blame] | 3 | targets := vmlinux.srec vmlinux.bin zImage | 
 | 4 | subdir- := compressed | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 |  | 
 | 6 | OBJCOPYFLAGS_vmlinux.srec := -Osrec | 
 | 7 | OBJCOPYFLAGS_vmlinux.bin  := -Obinary | 
| Yoshinori Sato | 97a572b | 2007-05-06 14:50:36 -0700 | [diff] [blame] | 8 | OBJCOPYFLAGS_zImage := -O binary -R .note -R .comment -R .stab -R .stabstr -S | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 |  | 
 | 10 | $(obj)/vmlinux.srec $(obj)/vmlinux.bin:  vmlinux FORCE | 
 | 11 | 	$(call if_changed,objcopy) | 
 | 12 | 	@echo '  Kernel: $@ is ready' | 
 | 13 |  | 
| Yoshinori Sato | 97a572b | 2007-05-06 14:50:36 -0700 | [diff] [blame] | 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 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | CLEAN_FILES += arch/$(ARCH)/vmlinux.bin arch/$(ARCH)/vmlinux.srec | 
| Yoshinori Sato | 97a572b | 2007-05-06 14:50:36 -0700 | [diff] [blame] | 22 |  |