9994a33865
The system call table has been consolidated into systbl.S. We have separate 32-bit and 64-bit versions of entry.S and misc.S since the code is mostly sufficiently different to be not worth merging. There are some common bits that will be extracted in future. Signed-off-by: Paul Mackerras <paulus@samba.org>
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
ifeq ($(CONFIG_PPC64),y)
|
|
EXTRA_CFLAGS += -mno-minimal-toc
|
|
endif
|
|
ifeq ($(CONFIG_PPC32),y)
|
|
CFLAGS_prom_init.o += -fPIC
|
|
CFLAGS_btext.o += -fPIC
|
|
endif
|
|
|
|
extra-$(CONFIG_PPC_STD_MMU) := head_32.o
|
|
extra-$(CONFIG_PPC64) := head_64.o
|
|
extra-$(CONFIG_40x) := head_4xx.o
|
|
extra-$(CONFIG_44x) := head_44x.o
|
|
extra-$(CONFIG_FSL_BOOKE) := head_fsl_booke.o
|
|
extra-$(CONFIG_8xx) := head_8xx.o
|
|
extra-$(CONFIG_6xx) += idle_6xx.o
|
|
extra-$(CONFIG_PPC64) += entry_64.o
|
|
extra-$(CONFIG_PPC_FPU) += fpu.o
|
|
extra-y += vmlinux.lds
|
|
|
|
obj-y += traps.o prom.o semaphore.o
|
|
obj-$(CONFIG_PPC32) += entry_32.o setup_32.o misc_32.o
|
|
obj-$(CONFIG_PPC64) += idle_power4.o
|
|
obj-$(CONFIG_PPC64) += misc_64.o
|
|
ifeq ($(CONFIG_PPC32),y)
|
|
obj-$(CONFIG_PPC_OF) += prom_init.o of_device.o
|
|
obj-$(CONFIG_MODULES) += ppc_ksyms.o
|
|
endif
|
|
obj-$(CONFIG_ALTIVEC) += vecemu.o vector.o
|
|
obj-$(CONFIG_BOOTX_TEXT) += btext.o
|
|
|
|
ifeq ($(CONFIG_PPC_ISERIES),y)
|
|
arch/powerpc/kernel/head_64.o: arch/powerpc/platforms/iseries/lparmap.s
|
|
AFLAGS_head_64.o += -Iarch/powerpc/platforms/iseries
|
|
endif
|