1# 2# Makefile for the linux kernel. 3# 4 5extra-$(CONFIG_MMU) := head.o 6extra-$(CONFIG_SUN3) := sun3-head.o 7extra-y += vmlinux.lds 8 9obj-y := entry.o m68k_ksyms.o module.o process.o ptrace.o setup.o signal.o \ 10 sys_m68k.o syscalltable.o time.o traps.o 11 12obj-$(CONFIG_MMU) += ints.o devres.o 13devres-$(CONFIG_MMU) = ../../../kernel/irq/devres.o 14 15ifndef CONFIG_MMU_SUN3 16obj-y += dma.o 17endif 18ifndef CONFIG_MMU 19obj-y += init_task.o irq.o 20endif 21 22