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 init_task.o
  12. O_TARGET := kernel.o
  13. export-objs     := mca.o mtrr.o msr.o cpuid.o microcode.o i386_ksyms.o time.o
  14. obj-y := process.o semaphore.o signal.o entry.o traps.o irq.o vm86.o 
  15. ptrace.o i8259.o ioport.o ldt.o setup.o time.o sys_i386.o 
  16. pci-dma.o i386_ksyms.o i387.o bluesmoke.o dmi_scan.o
  17. ifdef CONFIG_PCI
  18. obj-y += pci-i386.o
  19. ifdef CONFIG_VISWS
  20. obj-y += pci-visws.o
  21. else
  22. obj-y += pci-pc.o pci-irq.o
  23. endif
  24. endif
  25. obj-$(CONFIG_MCA) += mca.o
  26. obj-$(CONFIG_MTRR) += mtrr.o
  27. obj-$(CONFIG_X86_MSR) += msr.o
  28. obj-$(CONFIG_X86_CPUID) += cpuid.o
  29. obj-$(CONFIG_MICROCODE) += microcode.o
  30. obj-$(CONFIG_APM) += apm.o
  31. obj-$(CONFIG_SMP) += smp.o smpboot.o trampoline.o
  32. obj-$(CONFIG_X86_LOCAL_APIC) += mpparse.o apic.o nmi.o
  33. obj-$(CONFIG_X86_IO_APIC) += io_apic.o acpitable.o
  34. obj-$(CONFIG_X86_VISWS_APIC) += visws_apic.o
  35. include $(TOPDIR)/Rules.make