Makefile (115b384cf87249d76adb0b21aca11ee22128927d) | Makefile (c08037997d4ae3e9a679fbdb46ed47c957916e14) |
---|---|
1# 2# Makefile for the linux kernel. 3# 4 5ifeq ($(CONFIG_PPC64),y) 6EXTRA_CFLAGS += -mno-minimal-toc 7endif 8ifeq ($(CONFIG_PPC32),y) --- 56 unchanged lines hidden (view full) --- 65 66pci64-$(CONFIG_PPC64) += pci_64.o pci_dn.o pci_iommu.o \ 67 pci_direct_iommu.o iomap.o 68pci32-$(CONFIG_PPC32) := pci_32.o 69obj-$(CONFIG_PCI) += $(pci64-y) $(pci32-y) 70kexec-$(CONFIG_PPC64) := machine_kexec_64.o 71kexec-$(CONFIG_PPC32) := machine_kexec_32.o 72obj-$(CONFIG_KEXEC) += machine_kexec.o crash.o $(kexec-y) | 1# 2# Makefile for the linux kernel. 3# 4 5ifeq ($(CONFIG_PPC64),y) 6EXTRA_CFLAGS += -mno-minimal-toc 7endif 8ifeq ($(CONFIG_PPC32),y) --- 56 unchanged lines hidden (view full) --- 65 66pci64-$(CONFIG_PPC64) += pci_64.o pci_dn.o pci_iommu.o \ 67 pci_direct_iommu.o iomap.o 68pci32-$(CONFIG_PPC32) := pci_32.o 69obj-$(CONFIG_PCI) += $(pci64-y) $(pci32-y) 70kexec-$(CONFIG_PPC64) := machine_kexec_64.o 71kexec-$(CONFIG_PPC32) := machine_kexec_32.o 72obj-$(CONFIG_KEXEC) += machine_kexec.o crash.o $(kexec-y) |
73obj-$(CONFIG_AUDIT) += audit.o 74obj64-$(CONFIG_AUDIT) += compat_audit.o |
|
73 74ifeq ($(CONFIG_PPC_ISERIES),y) 75$(obj)/head_64.o: $(obj)/lparmap.s 76AFLAGS_head_64.o += -I$(obj) 77endif 78 79else 80# stuff used from here for ARCH=ppc 81smpobj-$(CONFIG_SMP) += smp.o 82 83endif 84 85obj-$(CONFIG_PPC32) += $(obj32-y) 86obj-$(CONFIG_PPC64) += $(obj64-y) 87 88extra-$(CONFIG_PPC_FPU) += fpu.o 89extra-$(CONFIG_PPC64) += entry_64.o | 75 76ifeq ($(CONFIG_PPC_ISERIES),y) 77$(obj)/head_64.o: $(obj)/lparmap.s 78AFLAGS_head_64.o += -I$(obj) 79endif 80 81else 82# stuff used from here for ARCH=ppc 83smpobj-$(CONFIG_SMP) += smp.o 84 85endif 86 87obj-$(CONFIG_PPC32) += $(obj32-y) 88obj-$(CONFIG_PPC64) += $(obj64-y) 89 90extra-$(CONFIG_PPC_FPU) += fpu.o 91extra-$(CONFIG_PPC64) += entry_64.o |