# BK Id: SCCS/s.Makefile 1.120 01/28/03 09:19:10 porter # # # Makefile for the linux kernel. # # Note! Dependencies are done automagically by 'make dep', which also # removes any old dependencies. DON'T put your own dependencies here # unless it's something special (ie not a .c file). # # Note 2! The CFLAGS definitions are now in the main makefile... USE_STANDARD_AS_RULE := true ifdef CONFIG_PPC64BRIDGE EXTRA_AFLAGS := -Wa,-mppc64bridge endif ifdef CONFIG_4xx EXTRA_AFLAGS := -Wa,-m405 endif # Code in these files is used before the kernel is moved to its final position CFLAGS_prom_init.o += -mrelocatable-lib CFLAGS_btext.o += -mrelocatable-lib # Start off with 'head.o', change as needed. HEAD-y := head.o HEAD-$(CONFIG_6xx) += idle_6xx.o HEAD-$(CONFIG_40x) := head_4xx.o HEAD-$(CONFIG_440) := head_440.o HEAD-$(CONFIG_8xx) := head_8xx.o HEAD-$(CONFIG_PPC_ISERIES) := iSeries_head.o all: $(HEAD-y) kernel.o O_TARGET := kernel.o export-objs := ppc_ksyms.o time.o ppc4xx_dma.o ocp.o \ ppc4xx_pm.o ocp_uart.o ppc4xx_sgdma.o \ ppc4xx_stbdma.o gt64260_common.o obj-y := entry.o traps.o irq.o idle.o time.o misc.o \ process.o signal.o ptrace.o align.o \ semaphore.o syscalls.o setup.o \ cputable.o ppc_htab.o obj-$(CONFIG_6xx) += l2cr.o obj-$(CONFIG_MODULES) += ppc_ksyms.o obj-$(CONFIG_PCI) += pci.o ifneq ($(CONFIG_PPC_ISERIES),y) obj-$(CONFIG_PCI) += pci-dma.o endif obj-$(CONFIG_PPCBUG_NVRAM) += prep_nvram.o obj-$(CONFIG_KGDB) += ppc-stub.o obj-$(CONFIG_SMP) += smp.o obj-$(CONFIG_TAU) += temp.o ifeq ($(CONFIG_KGDB),y) obj-$(CONFIG_GEN550_KGDB) += gen550_kgdb.o gen550_dbg.o endif ifeq ($(CONFIG_SERIAL_TEXT_DEBUG),y) obj-$(CONFIG_GEN550_PROGRESS) += gen550_dbg.o endif ifeq ($(CONFIG_4xx),y) obj-$(CONFIG_4xx) += todc_time.o idle_4xx.o obj-$(CONFIG_40x) += ppc4xx_setup.o ocp.o ifeq ($(CONFIG_XILINX_OCP),y) obj-$(CONFIG_40x) += xilinx_pic.o else obj-$(CONFIG_40x) += ppc4xx_pic.o endif obj-$(CONFIG_PM) += ppc4xx_pm.o ifneq ($(CONFIG_RAINIER),y) ifeq ($(CONFIG_SERIAL),y) obj-$(CONFIG_40x) += ocp_uart.o endif endif obj-$(CONFIG_440) += ppc4xx_pic.o ocp.o obj-$(CONFIG_PPC4xx_EDMA) += ppc4xx_sgdma.o obj-$(CONFIG_STBXXX_DMA) += ppc4xx_stbdma.o obj-$(CONFIG_PPC4xx_DMA) += ppc4xx_dma.o ifeq ($(CONFIG_PCI),y) obj-$(CONFIG_40x) += ppc405_pci.o indirect_pci.o pci_auto.o obj-$(CONFIG_440) += indirect_pci.o pci_auto.o endif obj-$(CONFIG_OCP_PROC) += ocp_proc.o endif obj-$(CONFIG_8xx) += m8xx_setup.o ppc8xx_pic.o ifeq ($(CONFIG_8xx),y) obj-$(CONFIG_PCI) += qspan_pci.o ifndef CONFIG_MATH_EMULATION obj-y += softemu8xx.o endif endif obj-$(CONFIG_MBX) += i8259.o obj-$(CONFIG_ALL_PPC) += prom_init.o prom.o open_pic.o \ indirect_pci.o i8259.o obj-$(CONFIG_ADIR) += i8259.o indirect_pci.o pci_auto.o \ todc_time.o obj-$(CONFIG_GT64260) += gt64260_common.o gt64260_pic.o obj-$(CONFIG_EV64260) += indirect_pci.o todc_time.o pci_auto.o obj-$(CONFIG_GEMINI) += open_pic.o obj-$(CONFIG_K2) += i8259.o indirect_pci.o todc_time.o \ pci_auto.o obj-$(CONFIG_LOPEC) += mpc10x_common.o indirect_pci.o pci_auto.o \ open_pic.o i8259.o todc_time.o obj-$(CONFIG_MCPN765) += todc_time.o indirect_pci.o pci_auto.o \ open_pic.o i8259.o pplus_common.o obj-$(CONFIG_MENF1) += todc_time.o i8259.o mpc10x_common.o \ pci_auto.o indirect_pci.o obj-$(CONFIG_MVME5100) += open_pic.o todc_time.o indirect_pci.o \ i8259.o pci_auto.o pplus_common.o obj-$(CONFIG_PAL4) += todc_time.o indirect_pci.o pci_auto.o obj-$(CONFIG_PCORE) += mpc10x_common.o todc_time.o i8259.o \ indirect_pci.o pci_auto.o obj-$(CONFIG_POWERPMC250) += open_pic.o mpc10x_common.o \ indirect_pci.o pci_auto.o obj-$(CONFIG_PPLUS) += pplus_common.o open_pic.o i8259.o \ indirect_pci.o todc_time.o pci_auto.o obj-$(CONFIG_PRPMC750) += open_pic.o indirect_pci.o pci_auto.o \ pplus_common.o obj-$(CONFIG_PRPMC800) += open_pic.o indirect_pci.o pci_auto.o \ pplus_common.o harrier.o obj-$(CONFIG_SANDPOINT) += i8259.o open_pic.o mpc10x_common.o \ pci_auto.o indirect_pci.o obj-$(CONFIG_SPRUCE) += indirect_pci.o pci_auto.o todc_time.o obj-$(CONFIG_ZX4500) += indirect_pci.o pci_auto.o mpc10x_common.o \ i8259.o open_pic.o obj-$(CONFIG_8260) += m8260_setup.o ppc8260_pic.o obj-$(CONFIG_BOOTX_TEXT) += btext.o obj-$(CONFIG_PPC_ISERIES) += iSeries_misc.o include $(TOPDIR)/Rules.make entry.o: entry.S ppc_defs.h misc.o: misc.S ppc_defs.h l2cr.o: l2cr.S ppc_defs.h head.o: head.S ppc_defs.h head_4xx.o: head_4xx.S ppc_defs.h head_440.o: head_440.S ppc_defs.h head_8xx.o: head_8xx.S ppc_defs.h iSeries_head.o: iSeries_head.S ppc_defs.h iSeries_misc.o: iSeries_misc.S ppc_defs.h idle_6xx.o: idle_6xx.S ppc_defs.h ppc_defs.h: mk_defs.c ppc_defs.head \ $(TOPDIR)/include/asm/mmu.h \ $(TOPDIR)/include/asm/processor.h \ $(TOPDIR)/include/asm/pgtable.h \ $(TOPDIR)/include/asm/ptrace.h $(CC) $(CFLAGS) -S mk_defs.c cp ppc_defs.head ppc_defs.h # for bk, this way we can write to the file even if it's not checked out chmod u+w ppc_defs.h grep '^#define' mk_defs.s >> ppc_defs.h rm mk_defs.s find_name : find_name.c $(HOSTCC) $(HOSTCFLAGS) -o find_name find_name.c checks: checks.c $(HOSTCC) -I$(HPATH) $(HOSTCFLAGS) -D__KERNEL__ -fno-builtin -o checks checks.c ./checks