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 8obj-$(CONFIG_PCI) += pci/ 9obj-$(CONFIG_PARISC) += parisc/ 10obj-$(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 13obj-$(CONFIG_PNP) += pnp/ 14 15# char/ comes before serial/ etc so that the VT console is the boot-time 16# default. 17obj-y += char/ 18obj-y += serial/ 19obj-$(CONFIG_PARPORT) += parport/ 20obj-y += base/ block/ misc/ net/ media/ 21obj-$(CONFIG_NUBUS) += nubus/ 22obj-$(CONFIG_ATM) += atm/ 23obj-$(CONFIG_PPC_PMAC) += macintosh/ 24obj-$(CONFIG_IDE) += ide/ 25obj-$(CONFIG_FC4) += fc4/ 26obj-$(CONFIG_SCSI) += scsi/ 27obj-$(CONFIG_FUSION) += message/ 28obj-$(CONFIG_IEEE1394) += ieee1394/ 29obj-y += cdrom/ video/ 30obj-$(CONFIG_MTD) += mtd/ 31obj-$(CONFIG_PCMCIA) += pcmcia/ 32obj-$(CONFIG_DIO) += dio/ 33obj-$(CONFIG_SBUS) += sbus/ 34obj-$(CONFIG_ZORRO) += zorro/ 35obj-$(CONFIG_MAC) += macintosh/ 36obj-$(CONFIG_PARIDE) += block/paride/ 37obj-$(CONFIG_TC) += tc/ 38obj-$(CONFIG_USB) += usb/ 39obj-$(CONFIG_USB_GADGET) += usb/gadget/ 40obj-$(CONFIG_INPUT) += input/ 41obj-$(CONFIG_GAMEPORT) += input/gameport/ 42obj-$(CONFIG_SERIO) += input/serio/ 43obj-$(CONFIG_I2O) += message/ 44obj-$(CONFIG_I2C) += i2c/ 45obj-$(CONFIG_PHONE) += telephony/ 46obj-$(CONFIG_MD) += md/ 47obj-$(CONFIG_BT) += bluetooth/ 48obj-$(CONFIG_ISDN) += isdn/ 49obj-$(CONFIG_MCA) += mca/ 50obj-$(CONFIG_EISA) += eisa/ 51obj-$(CONFIG_CPU_FREQ) += cpufreq/ 52obj-y += firmware/ 53

