Kbuild 386 B

1234567891011121314151617181920
  1. # platform specific definitions
  2. include arch/mips/Kbuild.platforms
  3. obj-y := $(platform-y)
  4. # make clean traverses $(obj-) without having included .config, so
  5. # everything ends up here
  6. obj- := $(platform-)
  7. # mips object files
  8. # The object files are linked as core-y files would be linked
  9. obj-y += kernel/
  10. obj-y += mm/
  11. obj-y += net/
  12. obj-y += vdso/
  13. ifdef CONFIG_KVM
  14. obj-y += kvm/
  15. endif