Kbuild 484 B

12345678910111213141516171819202122232425
  1. # SPDX-License-Identifier: GPL-2.0
  2. # platform specific definitions
  3. include $(srctree)/arch/mips/Kbuild.platforms
  4. obj-y := $(platform-y)
  5. # make clean traverses $(obj-) without having included .config, so
  6. # everything ends up here
  7. obj- := $(platform-y)
  8. # mips object files
  9. # The object files are linked as core-y files would be linked
  10. obj-y += generic/
  11. obj-y += kernel/
  12. obj-y += mm/
  13. obj-y += net/
  14. obj-y += vdso/
  15. ifdef CONFIG_KVM
  16. obj-y += kvm/
  17. endif
  18. # for cleaning
  19. subdir- += boot