Makefile 328 B

1234567891011121314
  1. #
  2. # Makefile for the MN10300-specific memory management code
  3. #
  4. obj-y := \
  5. init.o fault.o pgtable.o extable.o tlb-mn10300.o mmu-context.o \
  6. misalignment.o dma-alloc.o
  7. ifneq ($(CONFIG_MN10300_CACHE_DISABLED),y)
  8. obj-y += cache.o cache-mn10300.o
  9. ifeq ($(CONFIG_MN10300_CACHE_WBACK),y)
  10. obj-y += cache-flush-mn10300.o
  11. endif
  12. endif