Makefile (0cc4746cadda16826a1b3214c042a2f75445b71c) | Makefile (cc53291521701f9c7c7265bbb3c140563174d8b2) |
---|---|
1# 2# Makefile for the linux kernel. 3# 4 5ifeq ($(CONFIG_PPC64),y) 6EXTRA_CFLAGS += -mno-minimal-toc 7CFLAGS_ioctl32.o += -Ifs/ 8endif --- 52 unchanged lines hidden (view full) --- 61module-$(CONFIG_PPC64) += module_64.o 62obj-$(CONFIG_MODULES) += $(module-y) 63 64pci64-$(CONFIG_PPC64) += pci_64.o pci_dn.o pci_iommu.o \ 65 pci_direct_iommu.o iomap.o 66obj-$(CONFIG_PCI) += $(pci64-y) 67kexec-$(CONFIG_PPC64) := machine_kexec_64.o 68kexec-$(CONFIG_PPC32) := machine_kexec_32.o | 1# 2# Makefile for the linux kernel. 3# 4 5ifeq ($(CONFIG_PPC64),y) 6EXTRA_CFLAGS += -mno-minimal-toc 7CFLAGS_ioctl32.o += -Ifs/ 8endif --- 52 unchanged lines hidden (view full) --- 61module-$(CONFIG_PPC64) += module_64.o 62obj-$(CONFIG_MODULES) += $(module-y) 63 64pci64-$(CONFIG_PPC64) += pci_64.o pci_dn.o pci_iommu.o \ 65 pci_direct_iommu.o iomap.o 66obj-$(CONFIG_PCI) += $(pci64-y) 67kexec-$(CONFIG_PPC64) := machine_kexec_64.o 68kexec-$(CONFIG_PPC32) := machine_kexec_32.o |
69obj-$(CONFIG_KEXEC) += machine_kexec.o $(kexec-y) | 69obj-$(CONFIG_KEXEC) += machine_kexec.o crash.o $(kexec-y) |
70 71ifeq ($(CONFIG_PPC_ISERIES),y) 72$(obj)/head_64.o: $(obj)/lparmap.s 73AFLAGS_head_64.o += -I$(obj) 74endif 75 76else 77# stuff used from here for ARCH=ppc 78smpobj-$(CONFIG_SMP) += smp.o 79 80endif 81 82obj-$(CONFIG_PPC64) += $(obj64-y) 83 84extra-$(CONFIG_PPC_FPU) += fpu.o 85extra-$(CONFIG_PPC64) += entry_64.o | 70 71ifeq ($(CONFIG_PPC_ISERIES),y) 72$(obj)/head_64.o: $(obj)/lparmap.s 73AFLAGS_head_64.o += -I$(obj) 74endif 75 76else 77# stuff used from here for ARCH=ppc 78smpobj-$(CONFIG_SMP) += smp.o 79 80endif 81 82obj-$(CONFIG_PPC64) += $(obj64-y) 83 84extra-$(CONFIG_PPC_FPU) += fpu.o 85extra-$(CONFIG_PPC64) += entry_64.o |