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

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. .S.o:
  10. $(CC) $(AFLAGS) -traditional -c $< -o $*.o
  11. all: kernel.o head.o head64.o init_task.o
  12. O_TARGET := kernel.o
  13. export-objs     := mtrr.o msr.o cpuid.o x8664_ksyms.o pci-gart.o
  14. obj-y := process.o semaphore.o signal.o entry.o traps.o irq.o 
  15. ptrace.o i8259.o ioport.o ldt.o setup.o time.o sys_x86_64.o 
  16. pci-dma.o x8664_ksyms.o i387.o syscall.o vsyscall.o 
  17. setup64.o acpitable.o e820.o
  18. ifdef CONFIG_PCI
  19. obj-y += pci-x86_64.o
  20. obj-y += pci-pc.o pci-irq.o
  21. endif
  22. obj-$(CONFIG_MTRR) += mtrr.o
  23. obj-$(CONFIG_X86_MSR) += msr.o
  24. obj-$(CONFIG_X86_CPUID) += cpuid.o
  25. obj-$(CONFIG_SMP) += smp.o smpboot.o trampoline.o
  26. obj-$(CONFIG_X86_LOCAL_APIC) += apic.o  nmi.o
  27. obj-$(CONFIG_X86_IO_APIC) += io_apic.o mpparse.o
  28. obj-$(CONFIG_EARLY_PRINTK) +=  early_printk.o
  29. obj-$(CONFIG_GART_IOMMU) += pci-gart.o aperture.o
  30. obj-$(CONFIG_DUMMY_IOMMU) += pci-nommu.o
  31. obj-$(CONFIG_MCE) += bluesmoke.o
  32. include $(TOPDIR)/Rules.make