Makefile 685 B

1234567891011121314151617181920212223242526
  1. # Makefile for the linux Sparc-specific parts of the memory manager.
  2. #
  3. asflags-y := -ansi
  4. ccflags-y := -Werror
  5. obj-$(CONFIG_SPARC64) += ultra.o tlb.o tsb.o
  6. obj-y += fault_$(BITS).o
  7. obj-y += init_$(BITS).o
  8. obj-$(CONFIG_SPARC32) += loadmmu.o
  9. obj-$(CONFIG_SPARC32) += extable.o btfixup.o srmmu.o iommu.o io-unit.o
  10. obj-$(CONFIG_SPARC32) += hypersparc.o viking.o tsunami.o swift.o
  11. obj-$(CONFIG_SPARC_LEON)+= leon_mm.o
  12. # Only used by sparc64
  13. obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o
  14. # Only used by sparc32
  15. obj-$(CONFIG_HIGHMEM) += highmem.o
  16. ifdef CONFIG_SMP
  17. obj-$(CONFIG_SPARC32) += nosun4c.o
  18. else
  19. obj-$(CONFIG_SPARC32) += sun4c.o
  20. endif