diff options
Diffstat (limited to 'arch/m68k/kernel/Makefile')
-rw-r--r-- | arch/m68k/kernel/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/arch/m68k/kernel/Makefile b/arch/m68k/kernel/Makefile index ea0a39671438..40d29a788b05 100644 --- a/arch/m68k/kernel/Makefile +++ b/arch/m68k/kernel/Makefile | |||
@@ -2,16 +2,24 @@ | |||
2 | # Makefile for the linux kernel. | 2 | # Makefile for the linux kernel. |
3 | # | 3 | # |
4 | 4 | ||
5 | extra-$(CONFIG_MMU) := head.o | 5 | extra-$(CONFIG_AMIGA) := head.o |
6 | extra-$(CONFIG_ATARI) := head.o | ||
7 | extra-$(CONFIG_MAC) := head.o | ||
8 | extra-$(CONFIG_APOLLO) := head.o | ||
9 | extra-$(CONFIG_VME) := head.o | ||
10 | extra-$(CONFIG_HP300) := head.o | ||
11 | extra-$(CONFIG_Q40) := head.o | ||
12 | extra-$(CONFIG_SUN3X) := head.o | ||
6 | extra-$(CONFIG_SUN3) := sun3-head.o | 13 | extra-$(CONFIG_SUN3) := sun3-head.o |
7 | extra-y += vmlinux.lds | 14 | extra-y += vmlinux.lds |
8 | 15 | ||
9 | obj-y := entry.o init_task.o irq.o m68k_ksyms.o module.o process.o ptrace.o | 16 | obj-y := entry.o init_task.o irq.o m68k_ksyms.o module.o process.o ptrace.o |
10 | obj-y += setup.o signal.o sys_m68k.o syscalltable.o time.o traps.o | 17 | obj-y += setup.o signal.o sys_m68k.o syscalltable.o time.o traps.o |
11 | 18 | ||
12 | obj-$(CONFIG_MMU) += ints.o vectors.o | 19 | obj-$(CONFIG_MMU_MOTOROLA) += ints.o vectors.o |
20 | obj-$(CONFIG_MMU_SUN3) += ints.o vectors.o | ||
13 | 21 | ||
14 | ifndef CONFIG_MMU_SUN3 | 22 | ifndef CONFIG_MMU_SUN3 |
15 | obj-y += dma.o | 23 | obj-y += dma.o |
16 | endif | 24 | endif |
17 | 25 | ||