Makefile 465 B

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