From: Paul Mundt Date: Sun, 11 Nov 2007 08:41:56 +0000 (+0900) Subject: sh: Fix up the head-y targets for _32 and _64. X-Git-Tag: v2.6.25-rc1~1169^2~135 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4c91d6b105af5ab3011158addbd23f038aee6a00;p=profile%2Fivi%2Fkernel-x86-ivi.git sh: Fix up the head-y targets for _32 and _64. Signed-off-by: Paul Mundt --- diff --git a/arch/sh/Makefile b/arch/sh/Makefile index 897f1c5..4da3bc6 100644 --- a/arch/sh/Makefile +++ b/arch/sh/Makefile @@ -95,7 +95,9 @@ endif KBUILD_CFLAGS += -pipe $(cflags-y) KBUILD_AFLAGS += $(cflags-y) -head-y := arch/sh/kernel/head.o arch/sh/kernel/init_task.o +head-y := arch/sh/kernel/init_task.o +head-$(CONFIG_SUPERH32) += arch/sh/kernel/head_32.o +head-$(CONFIG_SUPERH64) += arch/sh/kernel/head_64.o LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)