Makefile 288 B

123456789101112
  1. #
  2. # Makefile for the Linux M32R-specific parts of the memory manager.
  3. #
  4. ifdef CONFIG_MMU
  5. obj-y := init.o fault.o mmu.o extable.o ioremap.o cache.o page.o
  6. else
  7. obj-y := init.o fault-nommu.o mmu.o extable.o ioremap-nommu.o cache.o page.o
  8. endif
  9. obj-$(CONFIG_DISCONTIGMEM) += discontig.o