Makefile 442 B

1234567891011121314151617181920
  1. #
  2. # arch/m32r/boot/Makefile
  3. #
  4. # This file is subject to the terms and conditions of the GNU General Public
  5. # License. See the file "COPYING" in the main directory of this archive
  6. # for more details.
  7. targets := zImage
  8. subdir- := compressed
  9. obj-y := setup.o
  10. $(obj)/zImage: $(obj)/compressed/vmlinux FORCE
  11. $(call if_changed,objcopy)
  12. @echo 'Kernel: $@ is ready'
  13. $(obj)/compressed/vmlinux: FORCE
  14. $(Q)$(MAKE) $(build)=$(obj)/compressed $@