2 # Makefile for the Linux kernel device drivers.
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 (not a .c file).
8 # Note 2! The CFLAGS definitions are now in the main makefile.
10 SUB_DIRS
:= block char net parport sound misc
11 MOD_SUB_DIRS
:= $(SUB_DIRS
)
12 ALL_SUB_DIRS
:= $(SUB_DIRS
) pci sgi scsi sbus cdrom isdn pnp i2o ieee1394 \
13 macintosh video dio zorro fc4 usb \
14 nubus tc atm pcmcia i2c telephony
25 ifeq ($(CONFIG_PCMCIA
),y
)
28 ifeq ($(CONFIG_PCMCIA
),m
)
29 MOD_SUB_DIRS
+= pcmcia
57 MOD_SUB_DIRS
+= macintosh
62 MOD_SUB_DIRS
+= macintosh
65 ifeq ($(CONFIG_USB
),y
)
69 ifeq ($(CONFIG_USB
),m
)
74 ifeq ($(CONFIG_PHONE
),y
)
76 MOD_SUB_DIRS
+= telephony
78 ifeq ($(CONFIG_PHONE
),m
)
79 MOD_SUB_DIRS
+= telephony
88 ifeq ($(CONFIG_I2O
),y
)
92 ifeq ($(CONFIG_I2O
),m
)
97 # If CONFIG_SCSI is set, the core of SCSI support will be added to the kernel,
98 # but some of the low-level things may also be modules.
99 ifeq ($(CONFIG_SCSI
),y
)
103 ifeq ($(CONFIG_SCSI
),m
)
108 ifeq ($(CONFIG_IEEE1394
),y
)
110 MOD_SUB_DIRS
+= ieee1394
112 ifeq ($(CONFIG_IEEE1394
),m
)
113 MOD_SUB_DIRS
+= ieee1394
117 ifeq ($(CONFIG_PNP
),y
)
121 ifeq ($(CONFIG_PNP
),m
)
126 ifneq ($(CONFIG_CD_NO_IDESCSI
)$(CONFIG_BLK_DEV_IDECD
)$(CONFIG_BLK_DEV_SR
)$(CONFIG_PARIDE_PCD
),)
128 MOD_SUB_DIRS
+= cdrom
131 ifeq ($(CONFIG_ISDN
),y
)
135 ifeq ($(CONFIG_ISDN
),m
)
145 ifeq ($(CONFIG_FC4
),y
)
149 ifeq ($(CONFIG_FC4
),m
)
154 # When MOD_LIST_NAME is set, make will try to add $(MOD_SUB_DIRS).o to
155 # modules/MOD_LIST_NAME. We don't have hamradio.o and Linus
156 # sort of insisted on making hamradio/ a subdirectory of drivers/net/.
158 ifeq ($(CONFIG_HAMRADIO
),y
)
159 SUB_DIRS
+= net
/hamradio
160 MOD_SUB_DIRS
+= net
/hamradio
163 ifeq ($(CONFIG_I2C
),y
)
167 ifeq ($(CONFIG_I2C
),m
)
172 include $(TOPDIR
)/Rules.make