Makefile 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #
  2. # Makefile for the Linux kernel device drivers.
  3. #
  4. # 15 Sep 2000, Christoph Hellwig <hch@infradead.org>
  5. # Rewritten to use lists instead of if-statements.
  6. #
  7. obj-$(CONFIG_HAVE_GPIO_LIB) += gpio/
  8. obj-$(CONFIG_PCI) += pci/
  9. obj-$(CONFIG_PARISC) += parisc/
  10. obj-$(CONFIG_RAPIDIO) += rapidio/
  11. obj-y += video/
  12. obj-$(CONFIG_ACPI) += acpi/
  13. # PnP must come after ACPI since it will eventually need to check if acpi
  14. # was used and do nothing if so
  15. obj-$(CONFIG_PNP) += pnp/
  16. obj-$(CONFIG_ARM_AMBA) += amba/
  17. obj-$(CONFIG_XEN) += xen/
  18. # char/ comes before serial/ etc so that the VT console is the boot-time
  19. # default.
  20. obj-y += char/
  21. obj-$(CONFIG_CONNECTOR) += connector/
  22. # i810fb and intelfb depend on char/agp/
  23. obj-$(CONFIG_FB_I810) += video/i810/
  24. obj-$(CONFIG_FB_INTEL) += video/intelfb/
  25. obj-y += serial/
  26. obj-$(CONFIG_PARPORT) += parport/
  27. obj-y += base/ block/ misc/ mfd/ net/ media/
  28. obj-$(CONFIG_NUBUS) += nubus/
  29. obj-$(CONFIG_ATM) += atm/
  30. obj-y += macintosh/
  31. obj-$(CONFIG_IDE) += ide/
  32. obj-$(CONFIG_SCSI) += scsi/
  33. obj-$(CONFIG_ATA) += ata/
  34. obj-$(CONFIG_FUSION) += message/
  35. obj-$(CONFIG_FIREWIRE) += firewire/
  36. obj-y += ieee1394/
  37. obj-$(CONFIG_UIO) += uio/
  38. obj-y += cdrom/
  39. obj-y += auxdisplay/
  40. obj-$(CONFIG_MTD) += mtd/
  41. obj-$(CONFIG_SPI) += spi/
  42. obj-$(CONFIG_PCCARD) += pcmcia/
  43. obj-$(CONFIG_DIO) += dio/
  44. obj-$(CONFIG_SBUS) += sbus/
  45. obj-$(CONFIG_ZORRO) += zorro/
  46. obj-$(CONFIG_MAC) += macintosh/
  47. obj-$(CONFIG_ATA_OVER_ETH) += block/aoe/
  48. obj-$(CONFIG_PARIDE) += block/paride/
  49. obj-$(CONFIG_TC) += tc/
  50. obj-$(CONFIG_USB) += usb/
  51. obj-$(CONFIG_PCI) += usb/
  52. obj-$(CONFIG_USB_GADGET) += usb/gadget/
  53. obj-$(CONFIG_SERIO) += input/serio/
  54. obj-$(CONFIG_GAMEPORT) += input/gameport/
  55. obj-$(CONFIG_INPUT) += input/
  56. obj-$(CONFIG_I2O) += message/
  57. obj-$(CONFIG_RTC_LIB) += rtc/
  58. obj-y += i2c/
  59. obj-$(CONFIG_W1) += w1/
  60. obj-$(CONFIG_POWER_SUPPLY) += power/
  61. obj-$(CONFIG_HWMON) += hwmon/
  62. obj-$(CONFIG_THERMAL) += thermal/
  63. obj-$(CONFIG_WATCHDOG) += watchdog/
  64. obj-$(CONFIG_PHONE) += telephony/
  65. obj-$(CONFIG_MD) += md/
  66. obj-$(CONFIG_BT) += bluetooth/
  67. obj-$(CONFIG_ISDN) += isdn/
  68. obj-$(CONFIG_EDAC) += edac/
  69. obj-$(CONFIG_MCA) += mca/
  70. obj-$(CONFIG_EISA) += eisa/
  71. obj-y += lguest/
  72. obj-$(CONFIG_CPU_FREQ) += cpufreq/
  73. obj-$(CONFIG_CPU_IDLE) += cpuidle/
  74. obj-$(CONFIG_MMC) += mmc/
  75. obj-$(CONFIG_MEMSTICK) += memstick/
  76. obj-$(CONFIG_NEW_LEDS) += leds/
  77. obj-$(CONFIG_INFINIBAND) += infiniband/
  78. obj-$(CONFIG_SGI_SN) += sn/
  79. obj-y += firmware/
  80. obj-$(CONFIG_CRYPTO) += crypto/
  81. obj-$(CONFIG_SUPERH) += sh/
  82. obj-$(CONFIG_GENERIC_TIME) += clocksource/
  83. obj-$(CONFIG_DMA_ENGINE) += dma/
  84. obj-$(CONFIG_DCA) += dca/
  85. obj-$(CONFIG_HID) += hid/
  86. obj-$(CONFIG_PPC_PS3) += ps3/
  87. obj-$(CONFIG_OF) += of/
  88. obj-$(CONFIG_SSB) += ssb/
  89. obj-$(CONFIG_VIRTIO) += virtio/