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 irq.o m68k_ksyms.o module.o process.o ptrace.o setup.o \ 10 signal.o sys_m68k.o syscalltable.o time.o traps.o 11 12obj-$(CONFIG_MMU) += ints.o vectors.o 13 14ifndef CONFIG_MMU_SUN3 15obj-y += dma.o 16endif 17ifndef CONFIG_MMU 18obj-y += init_task.o 19endif 20 21