diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-08-15 14:35:26 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-08-15 14:35:26 -0400 |
commit | 38f9ddf44150c1a213b41726384d055f7c35ec4f (patch) | |
tree | 33e059a43daf58f6f66ed82fde21babe1add0920 /arch/sh/kernel/Makefile | |
parent | 60e0a4c7adc700f2d2929cdb2d0055e519a3eb3d (diff) |
sh: Merge the _32/_64 variants of arch/sh/kernel/Makefile.
This uses the BITS export as per x86 in order to allow the same Makefile
to be used.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/Makefile')
-rw-r--r-- | arch/sh/kernel/Makefile | 43 |
1 files changed, 39 insertions, 4 deletions
diff --git a/arch/sh/kernel/Makefile b/arch/sh/kernel/Makefile index 349d833deab5..f37cf02ad9be 100644 --- a/arch/sh/kernel/Makefile +++ b/arch/sh/kernel/Makefile | |||
@@ -1,5 +1,40 @@ | |||
1 | ifeq ($(CONFIG_SUPERH32),y) | 1 | # |
2 | include ${srctree}/arch/sh/kernel/Makefile_32 | 2 | # Makefile for the Linux/SuperH kernel. |
3 | else | 3 | # |
4 | include ${srctree}/arch/sh/kernel/Makefile_64 | 4 | |
5 | extra-y := head_$(BITS).o init_task.o vmlinux.lds | ||
6 | |||
7 | ifdef CONFIG_FUNCTION_TRACER | ||
8 | # Do not profile debug and lowlevel utilities | ||
9 | CFLAGS_REMOVE_ftrace.o = -pg | ||
5 | endif | 10 | endif |
11 | |||
12 | obj-y := debugtraps.o dumpstack.o idle.o io.o io_generic.o irq.o \ | ||
13 | machvec.o process_$(BITS).o ptrace_$(BITS).o setup.o \ | ||
14 | signal_$(BITS).o sys_sh.o sys_sh$(BITS).o syscalls_$(BITS).o \ | ||
15 | time.o topology.o traps.o traps_$(BITS).o unwinder.o | ||
16 | |||
17 | obj-y += cpu/ | ||
18 | obj-$(CONFIG_VSYSCALL) += vsyscall/ | ||
19 | obj-$(CONFIG_SMP) += smp.o | ||
20 | obj-$(CONFIG_SH_STANDARD_BIOS) += sh_bios.o | ||
21 | obj-$(CONFIG_KGDB) += kgdb.o | ||
22 | obj-$(CONFIG_SH_CPU_FREQ) += cpufreq.o | ||
23 | obj-$(CONFIG_MODULES) += sh_ksyms_$(BITS).o module.o | ||
24 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | ||
25 | obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o | ||
26 | obj-$(CONFIG_CRASH_DUMP) += crash_dump.o | ||
27 | obj-$(CONFIG_STACKTRACE) += stacktrace.o | ||
28 | obj-$(CONFIG_IO_TRAPPED) += io_trapped.o | ||
29 | obj-$(CONFIG_KPROBES) += kprobes.o | ||
30 | obj-$(CONFIG_GENERIC_GPIO) += gpio.o | ||
31 | obj-$(CONFIG_DYNAMIC_FTRACE) += ftrace.o | ||
32 | obj-$(CONFIG_FTRACE_SYSCALLS) += ftrace.o | ||
33 | obj-$(CONFIG_FUNCTION_GRAPH_TRACER) += ftrace.o | ||
34 | obj-$(CONFIG_DUMP_CODE) += disassemble.o | ||
35 | obj-$(CONFIG_HIBERNATION) += swsusp.o | ||
36 | obj-$(CONFIG_DWARF_UNWINDER) += dwarf.o | ||
37 | |||
38 | obj-$(CONFIG_GENERIC_CLOCKEVENTS_BROADCAST) += localtimer.o | ||
39 | |||
40 | EXTRA_CFLAGS += -Werror | ||