/arch/mips/Kbuild

http://github.com/mirrors/linux · #! · 24 lines · 19 code · 5 blank · 0 comment · 0 complexity · b0f1415695d545cdc3dd3df7f22e1b99 MD5 · raw file

  1. # Fail on warnings - also for files referenced in subdirs
  2. # -Werror can be disabled for specific files using:
  3. # CFLAGS_<file.o> := -Wno-error
  4. subdir-ccflags-y := -Werror
  5. # platform specific definitions
  6. include arch/mips/Kbuild.platforms
  7. obj-y := $(platform-y)
  8. # make clean traverses $(obj-) without having included .config, so
  9. # everything ends up here
  10. obj- := $(platform-)
  11. # mips object files
  12. # The object files are linked as core-y files would be linked
  13. obj-y += kernel/
  14. obj-y += mm/
  15. obj-y += net/
  16. obj-y += vdso/
  17. ifdef CONFIG_KVM
  18. obj-y += kvm/
  19. endif