mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
87f5a7f703
- Remove old specific targets, use more generic ones instead.
22 lines
481 B
Makefile
22 lines
481 B
Makefile
#
|
|
# arch/cris/arch-v10/boot/Makefile
|
|
#
|
|
|
|
OBJCOPY = objcopy-cris
|
|
OBJCOPYFLAGS = -O binary --remove-section=.bss
|
|
|
|
subdir- := compressed rescue
|
|
targets := Image
|
|
|
|
$(obj)/Image: vmlinux FORCE
|
|
$(call if_changed,objcopy)
|
|
@echo ' Kernel: $@ is ready'
|
|
|
|
$(obj)/compressed/vmlinux: $(obj)/Image FORCE
|
|
$(Q)$(MAKE) $(build)=$(obj)/compressed $@
|
|
$(Q)$(MAKE) $(build)=$(obj)/rescue $(obj)/rescue/rescue.bin
|
|
|
|
$(obj)/zImage: $(obj)/compressed/vmlinux
|
|
@cp $< $@
|
|
@echo ' Kernel: $@ is ready'
|