1 #
2 # Makefile for the Linux kernel device drivers.
3 #
4 # 15 Sep 2000, Christoph Hellwig <hch@caldera.de>
5 # Rewritten to use lists instead of if-statements.
6 #
7
8
9 mod-subdirs := dio mtd sbus video macintosh usb input telephony sgi i2o ide \
10 scsi md ieee1394 pnp isdn atm fc4 net/hamradio i2c acpi
11
12 subdir-y := block char net parport sound misc media cdrom
13 subdir-m := $(subdir-y)
14
15
16 subdir-$(CONFIG_DIO) += dio
17 subdir-$(CONFIG_PCI) += pci
18 subdir-$(CONFIG_PCMCIA) += pcmcia
19 subdir-$(CONFIG_MTD) += mtd
20 subdir-$(CONFIG_SBUS) += sbus
21 subdir-$(CONFIG_ZORRO) += zorro
22 subdir-$(CONFIG_NUBUS) += nubus
23 subdir-$(CONFIG_TC) += tc
24 subdir-$(CONFIG_VT) += video
25 subdir-$(CONFIG_MAC) += macintosh
26 subdir-$(CONFIG_ALL_PPC) += macintosh
27 subdir-$(CONFIG_USB) += usb
28 subdir-$(CONFIG_INPUT) += input
29 subdir-$(CONFIG_PHONE) += telephony
30 subdir-$(CONFIG_SGI) += sgi
31 subdir-$(CONFIG_IDE) += ide
32 subdir-$(CONFIG_SCSI) += scsi
33 subdir-$(CONFIG_I2O) += i2o
34 subdir-$(CONFIG_MD) += md
35 subdir-$(CONFIG_IEEE1394) += ieee1394
36 subdir-$(CONFIG_PNP) += pnp
37 subdir-$(CONFIG_ISDN) += isdn
38 subdir-$(CONFIG_ATM) += atm
39 subdir-$(CONFIG_FC4) += fc4
40
41 # CONFIG_HAMRADIO can be set without CONFIG_NETDEVICE being set -- ch
42 subdir-$(CONFIG_HAMRADIO) += net/hamradio
43 subdir-$(CONFIG_I2C) += i2c
44 subdir-$(CONFIG_ACPI) += acpi
45
46 include $(TOPDIR)/Rules.make
47
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.