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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the linux kernel.
  3. #
  4. # Note! Dependencies are done automagically by 'make dep', which also
  5. # removes any old dependencies. DON'T put your own dependencies here
  6. # unless it's something special (ie not a .c file).
  7. #
  8. # Note 2! The CFLAGS definitions are now in the main makefile...
  9. USE_STANDARD_AS_RULE    := true
  10. EXTRA_CFLAGS = -mno-minimal-toc
  11. KHEAD := head.o
  12. all: $(KHEAD) kernel.o
  13. O_TARGET := kernel.o
  14. export-objs         := ppc_ksyms.o setup.o
  15. obj-y               := ppc_ksyms.o setup.o entry.o traps.o irq.o idle.o 
  16. time.o process.o signal.o syscalls.o misc.o ptrace.o 
  17. align.o semaphore.o bitops.o stab.o htab.o pacaData.o 
  18. LparData.o udbg.o binfmt_elf32.o sys_ppc32.o sys32.o 
  19. ioctl32.o ptrace32.o signal32.o open_pic.o xics.o 
  20. pmc.o mf_proc.o proc_pmc.o proc_pcifr.o iSeries_setup.o 
  21. ItLpQueue.o hvCall.o mf.o HvLpEvent.o ras.o 
  22. iSeries_proc.o HvCall.o flight_recorder.o HvLpConfig.o 
  23. rtc.o perfmon.o
  24. obj-$(CONFIG_PCI) +=  pci.o pci_dn.o pci_dma.o pSeries_lpar.o pSeries_hvCall.o
  25. ifeq ($(CONFIG_PPC_ISERIES),y)
  26. obj-$(CONFIG_PCI) += iSeries_pci.o iSeries_pci_reset.o iSeries_IoMmTable.o iSeries_irq.o iSeries_VpdInfo.o XmPciLpEvent.o 
  27. endif
  28. ifeq ($(CONFIG_PPC_PSERIES),y)
  29. obj-$(CONFIG_PCI) += pSeries_pci.o eeh.o
  30. obj-y += rtasd.o nvram.o
  31. endif
  32. obj-$(CONFIG_RTAS_FLASH) += rtas_flash.o
  33. obj-$(CONFIG_KGDB) += ppc-stub.o
  34. obj-$(CONFIG_SMP) += smp.o
  35. obj-y += prom.o lmb.o rtas.o rtas-proc.o chrp_setup.o i8259.o
  36. include $(TOPDIR)/Rules.make
  37. #
  38. # This is just to get the dependencies...
  39. #
  40. head.o: head.S ppc_defs.h
  41. ppc_defs.h: mk_defs.c ppc_defs.head 
  42. $(TOPDIR)/include/asm/mmu.h 
  43. $(TOPDIR)/include/asm/processor.h 
  44. $(TOPDIR)/include/asm/pgtable.h 
  45. $(TOPDIR)/include/asm/ptrace.h
  46. $(CC) $(CFLAGS) -S mk_defs.c
  47. cp ppc_defs.head ppc_defs.h
  48. # for bk, this way we can write to the file even if it's not checked out
  49. chmod u+w ppc_defs.h
  50. grep '^#define' mk_defs.s >> ppc_defs.h
  51. rm mk_defs.s
  52. checks: checks.c
  53. $(HOSTCC) -I$(HPATH) $(HOSTCFLAGS) -D__KERNEL__ -fno-builtin -o checks checks.c
  54. ./checks