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. ifdef CONFIG_PARISC64
  10. all: kernel.o init_task.o pdc_cons.o process.o head64.o unaligned.o perf.o perf_asm.o
  11. else
  12. all: kernel.o init_task.o pdc_cons.o process.o head.o unaligned.o
  13. endif
  14. O_TARGET = kernel.o
  15. obj-y :=
  16. obj-m :=
  17. obj-n :=
  18. obj- :=
  19. obj-y           += cache.o pacache.o setup.o traps.o time.o irq.o 
  20. pa7300lc.o syscall.o entry.o sys_parisc.o firmware.o 
  21. ptrace.o hardware.o inventory.o drivers.o semaphore.o 
  22. signal.o hpmc.o real2.o parisc_ksyms.o unaligned.o 
  23. processor.o power.o
  24. export-objs := parisc_ksyms.o superio.o keyboard.o
  25. obj-$(CONFIG_SMP) += smp.o irq_smp.o
  26. obj-$(CONFIG_PA11) += pci-dma.o
  27. obj-$(CONFIG_PCI) += pci.o
  28. obj-$(CONFIG_VT) += keyboard.o
  29. obj-$(CONFIG_PCI_LBA) += lba_pci.o
  30. # I/O SAPIC is also on IA64 platforms.
  31. # The two could be merged into a common source some day.
  32. obj-$(CONFIG_IOSAPIC) += iosapic.o
  33. obj-$(CONFIG_IOMMU_SBA) += sba_iommu.o
  34. # Only use one of them: ccio-rm-dma is for PCX-W systems *only*
  35. # obj-$(CONFIG_IOMMU_CCIO) += ccio-rm-dma.o
  36. obj-$(CONFIG_IOMMU_CCIO) += ccio-dma.o
  37. obj-$(CONFIG_CHASSIS_LCD_LED) += led.o 
  38. obj-$(CONFIG_SUPERIO) += superio.o
  39. obj-$(CONFIG_PARISC64) += binfmt_elf32.o sys_parisc32.o 
  40. ioctl32.o signal32.o
  41. # only supported for PCX-W/U in 64-bit mode at the moment
  42. obj-$(CONFIG_PARISC64) += perf.o perf_asm.o
  43. include $(TOPDIR)/Rules.make