Makefile 388 B

1234567891011121314151617
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Makefile for the linux parisc-specific parts of the boot image creator.
  4. #
  5. targets := image
  6. targets += bzImage
  7. subdir- := compressed
  8. $(obj)/image: vmlinux FORCE
  9. $(call if_changed,objcopy)
  10. $(obj)/bzImage: $(obj)/compressed/vmlinux FORCE
  11. $(call if_changed,objcopy)
  12. $(obj)/compressed/vmlinux: FORCE
  13. $(Q)$(MAKE) $(build)=$(obj)/compressed $@