Makefile 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #
  2. # arch/riscv/boot/Makefile
  3. #
  4. # This file is included by the global makefile so that you can add your own
  5. # architecture-specific flags and dependencies.
  6. #
  7. # This file is subject to the terms and conditions of the GNU General Public
  8. # License. See the file "COPYING" in the main directory of this archive
  9. # for more details.
  10. #
  11. # Copyright (C) 2018, Anup Patel.
  12. # Author: Anup Patel <anup@brainfault.org>
  13. #
  14. # Based on the ia64 and arm64 boot/Makefile.
  15. #
  16. KCOV_INSTRUMENT := n
  17. OBJCOPYFLAGS_Image :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
  18. targets := Image loader
  19. $(obj)/Image: vmlinux FORCE
  20. $(call if_changed,objcopy)
  21. $(obj)/Image.gz: $(obj)/Image FORCE
  22. $(call if_changed,gzip)
  23. $(obj)/loader.o: $(src)/loader.S $(obj)/Image
  24. $(obj)/loader: $(obj)/loader.o $(obj)/Image $(obj)/loader.lds FORCE
  25. $(Q)$(LD) -T $(obj)/loader.lds -o $@ $(obj)/loader.o
  26. $(obj)/Image.bz2: $(obj)/Image FORCE
  27. $(call if_changed,bzip2)
  28. $(obj)/Image.lz4: $(obj)/Image FORCE
  29. $(call if_changed,lz4)
  30. $(obj)/Image.lzma: $(obj)/Image FORCE
  31. $(call if_changed,lzma)
  32. $(obj)/Image.lzo: $(obj)/Image FORCE
  33. $(call if_changed,lzo)
  34. $(obj)/loader.bin: $(obj)/loader FORCE
  35. $(call if_changed,objcopy)
  36. install:
  37. $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \
  38. $(obj)/Image System.map "$(INSTALL_PATH)"
  39. zinstall:
  40. $(CONFIG_SHELL) $(srctree)/$(src)/install.sh $(KERNELRELEASE) \
  41. $(obj)/Image.gz System.map "$(INSTALL_PATH)"