-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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>
- Loading branch information
Paul Mundt
committed
Aug 15, 2009
1 parent
60e0a4c
commit 38f9ddf
Showing
3 changed files
with
39 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,40 @@ | ||
ifeq ($(CONFIG_SUPERH32),y) | ||
include ${srctree}/arch/sh/kernel/Makefile_32 | ||
else | ||
include ${srctree}/arch/sh/kernel/Makefile_64 | ||
# | ||
# Makefile for the Linux/SuperH kernel. | ||
# | ||
|
||
extra-y := head_$(BITS).o init_task.o vmlinux.lds | ||
|
||
ifdef CONFIG_FUNCTION_TRACER | ||
# Do not profile debug and lowlevel utilities | ||
CFLAGS_REMOVE_ftrace.o = -pg | ||
endif | ||
|
||
obj-y := debugtraps.o dumpstack.o idle.o io.o io_generic.o irq.o \ | ||
machvec.o process_$(BITS).o ptrace_$(BITS).o setup.o \ | ||
signal_$(BITS).o sys_sh.o sys_sh$(BITS).o syscalls_$(BITS).o \ | ||
time.o topology.o traps.o traps_$(BITS).o unwinder.o | ||
|
||
obj-y += cpu/ | ||
obj-$(CONFIG_VSYSCALL) += vsyscall/ | ||
obj-$(CONFIG_SMP) += smp.o | ||
obj-$(CONFIG_SH_STANDARD_BIOS) += sh_bios.o | ||
obj-$(CONFIG_KGDB) += kgdb.o | ||
obj-$(CONFIG_SH_CPU_FREQ) += cpufreq.o | ||
obj-$(CONFIG_MODULES) += sh_ksyms_$(BITS).o module.o | ||
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | ||
obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o | ||
obj-$(CONFIG_CRASH_DUMP) += crash_dump.o | ||
obj-$(CONFIG_STACKTRACE) += stacktrace.o | ||
obj-$(CONFIG_IO_TRAPPED) += io_trapped.o | ||
obj-$(CONFIG_KPROBES) += kprobes.o | ||
obj-$(CONFIG_GENERIC_GPIO) += gpio.o | ||
obj-$(CONFIG_DYNAMIC_FTRACE) += ftrace.o | ||
obj-$(CONFIG_FTRACE_SYSCALLS) += ftrace.o | ||
obj-$(CONFIG_FUNCTION_GRAPH_TRACER) += ftrace.o | ||
obj-$(CONFIG_DUMP_CODE) += disassemble.o | ||
obj-$(CONFIG_HIBERNATION) += swsusp.o | ||
obj-$(CONFIG_DWARF_UNWINDER) += dwarf.o | ||
|
||
obj-$(CONFIG_GENERIC_CLOCKEVENTS_BROADCAST) += localtimer.o | ||
|
||
EXTRA_CFLAGS += -Werror |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.