Makefile
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. # BK Id: %F% %I% %G% %U% %#%
  2. #
  3. #
  4. # Makefile for the linux kernel.
  5. #
  6. # Note! Dependencies are done automagically by 'make dep', which also
  7. # removes any old dependencies. DON'T put your own dependencies here
  8. # unless it's something special (ie not a .c file).
  9. #
  10. # Note 2! The CFLAGS definitions are now in the main makefile...
  11. USE_STANDARD_AS_RULE := true
  12. ifdef CONFIG_PPC64BRIDGE
  13. EXTRA_AFLAGS := -Wa,-mppc64bridge
  14. endif
  15. ifdef CONFIG_4xx
  16. EXTRA_AFLAGS := -Wa,-m405
  17. endif
  18. # Code in these files is used before the kernel is moved to its final position
  19. CFLAGS_prom_init.o += -mrelocatable-lib
  20. CFLAGS_btext.o += -mrelocatable-lib
  21. # Start off with 'head.o', change as needed.
  22. HEAD-y := head.o
  23. HEAD-$(CONFIG_6xx) += idle_6xx.o
  24. HEAD-$(CONFIG_4xx) := head_4xx.o
  25. HEAD-$(CONFIG_8xx) := head_8xx.o
  26. all: $(HEAD-y) kernel.o
  27. O_TARGET := kernel.o
  28. export-objs := ppc_ksyms.o time.o
  29. obj-y := entry.o traps.o irq.o idle.o time.o misc.o 
  30. process.o signal.o ptrace.o align.o 
  31. semaphore.o syscalls.o setup.o 
  32. cputable.o ppc_htab.o
  33. obj-$(CONFIG_6xx) += l2cr.o
  34. obj-$(CONFIG_MODULES) += ppc_ksyms.o
  35. obj-$(CONFIG_PCI) += pci.o 
  36. obj-$(CONFIG_PCI) += pci-dma.o
  37. obj-$(CONFIG_KGDB) += ppc-stub.o
  38. obj-$(CONFIG_SMP) += smp.o
  39. obj-$(CONFIG_TAU) += temp.o
  40. obj-$(CONFIG_4xx) += ppc4xx_pic.o
  41. obj-$(CONFIG_8xx) += m8xx_setup.o ppc8xx_pic.o
  42. ifeq ($(CONFIG_8xx),y)
  43. obj-$(CONFIG_PCI) += qspan_pci.o
  44. ifndef CONFIG_MATH_EMULATION
  45. obj-y += softemu8xx.o
  46. endif
  47. endif
  48. obj-$(CONFIG_MBX) += i8259.o
  49. obj-$(CONFIG_ALL_PPC) += prom_init.o prom.o open_pic.o 
  50. indirect_pci.o i8259.o prep_nvram.o
  51. obj-$(CONFIG_GEMINI) += open_pic.o
  52. obj-$(CONFIG_PAL4) += indirect_pci.o pci_auto.o todc_time.o
  53. obj-$(CONFIG_SPRUCE) += indirect_pci.o pci_auto.o todc_time.o
  54. obj-$(CONFIG_8260) += m8260_setup.o ppc8260_pic.o
  55. obj-$(CONFIG_BOOTX_TEXT) += btext.o
  56. include $(TOPDIR)/Rules.make
  57. entry.o: entry.S ppc_defs.h
  58. misc.o: misc.S ppc_defs.h
  59. l2cr.o: l2cr.S ppc_defs.h
  60. head.o: head.S ppc_defs.h
  61. head_4xx.o: head_4xx.S ppc_defs.h
  62. head_8xx.o: head_8xx.S ppc_defs.h
  63. idle_6xx.o: idle_6xx.S ppc_defs.h
  64. ppc_defs.h: mk_defs.c ppc_defs.head 
  65. $(TOPDIR)/include/asm/mmu.h 
  66. $(TOPDIR)/include/asm/processor.h 
  67. $(TOPDIR)/include/asm/pgtable.h 
  68. $(TOPDIR)/include/asm/ptrace.h
  69. $(CC) $(CFLAGS) -S mk_defs.c
  70. cp ppc_defs.head ppc_defs.h
  71. # for bk, this way we can write to the file even if it's not checked out
  72. chmod u+w ppc_defs.h
  73. grep '^#define' mk_defs.s >> ppc_defs.h
  74. rm mk_defs.s
  75. find_name : find_name.c
  76. $(HOSTCC) $(HOSTCFLAGS) -o find_name find_name.c
  77. checks: checks.c
  78. $(HOSTCC) -I$(HPATH) $(HOSTCFLAGS) -D__KERNEL__ -fno-builtin -o checks checks.c
  79. ./checks