Makefile 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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_PCI) += pci/
  8. obj-$(CONFIG_PARISC) += parisc/
  9. obj-y += video/
  10. obj-$(CONFIG_ACPI_BOOT) += acpi/
  11. # PnP must come after ACPI since it will eventually need to check if acpi
  12. # was used and do nothing if so
  13. obj-$(CONFIG_PNP) += pnp/
  14. # char/ comes before serial/ etc so that the VT console is the boot-time
  15. # default.
  16. obj-y += char/
  17. # i810fb and intelfb depend on char/agp/
  18. obj-$(CONFIG_FB_I810) += video/i810/
  19. obj-$(CONFIG_FB_INTEL) += video/intelfb/
  20. # we also need input/serio early so serio bus is initialized by the time
  21. # serial drivers start registering their serio ports
  22. obj-$(CONFIG_SERIO) += input/serio/
  23. obj-y += serial/
  24. obj-$(CONFIG_PARPORT) += parport/
  25. obj-y += base/ block/ misc/ net/ media/
  26. obj-$(CONFIG_NUBUS) += nubus/
  27. obj-$(CONFIG_ATM) += atm/
  28. obj-$(CONFIG_PPC_PMAC) += macintosh/
  29. obj-$(CONFIG_IDE) += ide/
  30. obj-$(CONFIG_FC4) += fc4/
  31. obj-$(CONFIG_SCSI) += scsi/
  32. obj-$(CONFIG_FUSION) += message/
  33. obj-$(CONFIG_IEEE1394) += ieee1394/
  34. obj-y += cdrom/
  35. obj-$(CONFIG_MTD) += mtd/
  36. obj-$(CONFIG_PCCARD) += pcmcia/
  37. obj-$(CONFIG_DIO) += dio/
  38. obj-$(CONFIG_SBUS) += sbus/
  39. obj-$(CONFIG_ZORRO) += zorro/
  40. obj-$(CONFIG_MAC) += macintosh/
  41. obj-$(CONFIG_ATA_OVER_ETH) += block/aoe/
  42. obj-$(CONFIG_PARIDE) += block/paride/
  43. obj-$(CONFIG_TC) += tc/
  44. obj-$(CONFIG_USB) += usb/
  45. obj-$(CONFIG_USB_GADGET) += usb/gadget/
  46. obj-$(CONFIG_GAMEPORT) += input/gameport/
  47. obj-$(CONFIG_INPUT) += input/
  48. obj-$(CONFIG_I2O) += message/
  49. obj-$(CONFIG_I2C) += i2c/
  50. obj-$(CONFIG_W1) += w1/
  51. obj-$(CONFIG_PHONE) += telephony/
  52. obj-$(CONFIG_MD) += md/
  53. obj-$(CONFIG_BT) += bluetooth/
  54. obj-$(CONFIG_ISDN) += isdn/
  55. obj-$(CONFIG_MCA) += mca/
  56. obj-$(CONFIG_EISA) += eisa/
  57. obj-$(CONFIG_CPU_FREQ) += cpufreq/
  58. obj-$(CONFIG_MMC) += mmc/
  59. obj-$(CONFIG_INFINIBAND) += infiniband/
  60. obj-$(CONFIG_SGI_IOC4) += sn/
  61. obj-y += firmware/
  62. obj-$(CONFIG_CRYPTO) += crypto/