Makefile
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the Linux/SuperH 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. all: kernel.o head.o init_task.o
  9. clean:
  10. O_TARGET := kernel.o
  11. export-objs := io.o io_generic.o io_hd64461.o setup_hd64461.o sh_ksyms.o
  12. obj-y := process.o signal.o entry.o traps.o irq.o irq_ipr.o 
  13. ptrace.o setup.o time.o sys_sh.o semaphore.o 
  14. irq_imask.o io.o io_generic.o sh_ksyms.o
  15. obj-$(CONFIG_CF_ENABLER) += cf-enabler.o
  16. obj-$(CONFIG_CPU_SH4) += fpu.o
  17. obj-$(CONFIG_SH_RTC)            += rtc.o
  18. obj-$(CONFIG_SH_DMA) += dma.o
  19. obj-$(CONFIG_SH_STANDARD_BIOS) += sh_bios.o
  20. ifeq ($(CONFIG_PCI),y)
  21. ifeq ($(CONFIG_SH_DREAMCAST),y)
  22. obj-y  += pci-dc.o pcibios.o
  23. else
  24. obj-y                           += pci-dma.o pcibios.o
  25. obj-$(CONFIG_CPU_SUBTYPE_ST40STB1)+= pci_st40.o
  26. obj-$(CONFIG_CPU_SUBTYPE_SH7751)+= pci-sh7751.o 
  27. obj-$(CONFIG_SH_BIGSUR)+= pci-bigsur.o
  28. obj-$(CONFIG_SH_7751_SOLUTION_ENGINE)+= pci-7751se.o
  29. endif
  30. endif
  31. obj-$(CONFIG_SH_HP600) += mach_hp600.o
  32. machine-specific-objs += mach_hp600.o
  33. obj-$(CONFIG_SH_SOLUTION_ENGINE)+= mach_se.o setup_se.o io_se.o led_se.o
  34. machine-specific-objs += mach_se.o setup_se.o io_se.o led_se.o
  35. obj-$(CONFIG_SH_7751_SOLUTION_ENGINE)+= mach_7751se.o setup_7751se.o 
  36. io_7751se.o led_7751se.o
  37. machine-specific-objs           += mach_7751se.o 7751setup_se.o 
  38.    io_7751se.o led_7751se.o pci-7751se.o
  39. obj-$(CONFIG_SH_BIGSUR) += mach_bigsur.o setup_bigsur.o io_bigsur.o led_bigsur.o
  40. machine-specific-objs += mach_bigsur.o setup_bigsur.o io_bigsur.o led_bigsur.o
  41. obj-$(CONFIG_SH_SH2000) += setup_sh2000.o io_sh2000.o
  42. machine-specific-objs += setup_sh2000.o io_sh2000.o
  43. obj-$(CONFIG_SH_CAT68701)  += mach_cat68701.o io_cat68701.o
  44. machine-specific-objs += mach_cat68701.o io_cat68701.o
  45. obj-$(CONFIG_SH_CQREEK) += setup_cqreek.o
  46. machine-specific-objs += setup_cqreek.o
  47. obj-$(CONFIG_SH_UNKNOWN) += mach_unknown.o io_unknown.o
  48. machine-specific-objs += mach_unknown.o io_unknown.o
  49. obj-$(CONFIG_HD64461) += setup_hd64461.o io_hd64461.o
  50. machine-specific-objs += setup_hd64461.o io_hd64461.o
  51. obj-$(CONFIG_CPU_SUBTYPE_ST40STB1) +=irq_intc2.o
  52. obj-$(CONFIG_SH_ADX) += mach_adx.o setup_adx.o io_adx.o irq_maskreg.o
  53. machine-specific-objs += mach_adx.o setup_adx.o io_adx.o irq_maskreg.o
  54. # Doesn't compile well, so don't include in machine-specific-objs
  55. obj-$(CONFIG_HD64465) += setup_hd64465.o io_hd64465.o hd64465_gpio.o
  56. obj-$(CONFIG_SH_DMIDA) += mach_dmida.o
  57. obj-$(CONFIG_SH_EC3104)         += setup_ec3104.o io_ec3104.o mach_ec3104.o
  58. obj-$(CONFIG_SH_DREAMCAST) += mach_dc.o setup_dc.o io_dc.o rtc-aica.o
  59. ifeq ($(CONFIG_SH_GENERIC),y)
  60. obj-y += $(machine-specific-objs)
  61. endif
  62. USE_STANDARD_AS_RULE := true
  63. include $(TOPDIR)/Rules.make