Makefile 410 B

12345678910111213141516171819202122
  1. # Makefile for the linux Sparc-specific parts of the memory manager.
  2. #
  3. EXTRA_AFLAGS := -ansi
  4. obj-y := fault.o init.o loadmmu.o generic.o extable.o btfixup.o
  5. ifeq ($(CONFIG_SUN4),y)
  6. obj-y += nosrmmu.o
  7. else
  8. obj-y += srmmu.o iommu.o io-unit.o hypersparc.o viking.o tsunami.o swift.o
  9. endif
  10. ifdef CONFIG_HIGHMEM
  11. obj-y += highmem.o
  12. endif
  13. ifdef CONFIG_SMP
  14. obj-y += nosun4c.o
  15. else
  16. obj-y += sun4c.o
  17. endif