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 ap1000 atm pcmcia i2c telephony
25 ifeq ($(CONFIG_PCMCIA
),y
)
28 ifeq ($(CONFIG_PCMCIA
),m
)
29 MOD_SUB_DIRS
+= pcmcia
57 MOD_SUB_DIRS
+= macintosh
60 ifeq ($(CONFIG_USB
),y
)
64 ifeq ($(CONFIG_USB
),m
)
69 ifeq ($(CONFIG_PHONE
),y
)
71 MOD_SUB_DIRS
+= telephony
73 ifeq ($(CONFIG_PHONE
),m
)
74 MOD_SUB_DIRS
+= telephony
83 ifeq ($(CONFIG_I2O
),y
)
87 ifeq ($(CONFIG_I2O
),m
)
92 # If CONFIG_SCSI is set, the core of SCSI support will be added to the kernel,
93 # but some of the low-level things may also be modules.
94 ifeq ($(CONFIG_SCSI
),y
)
98 ifeq ($(CONFIG_SCSI
),m
)
103 ifeq ($(CONFIG_IEEE1394
),y
)
105 MOD_SUB_DIRS
+= ieee1394
107 ifeq ($(CONFIG_IEEE1394
),m
)
108 MOD_SUB_DIRS
+= ieee1394
112 ifeq ($(CONFIG_PNP
),y
)
116 ifeq ($(CONFIG_PNP
),m
)
121 ifneq ($(CONFIG_CD_NO_IDESCSI
)$(CONFIG_BLK_DEV_IDECD
)$(CONFIG_BLK_DEV_SR
)$(CONFIG_PARIDE_PCD
),)
123 MOD_SUB_DIRS
+= cdrom
126 ifeq ($(CONFIG_ISDN
),y
)
130 ifeq ($(CONFIG_ISDN
),m
)
140 ifeq ($(CONFIG_AP1000
),y
)
144 ifeq ($(CONFIG_FC4
),y
)
148 ifeq ($(CONFIG_FC4
),m
)
153 # When MOD_LIST_NAME is set, make will try to add $(MOD_SUB_DIRS).o to
154 # modules/MOD_LIST_NAME. We don't have hamradio.o and Linus
155 # sort of insisted on making hamradio/ a subdirectory of drivers/net/.
157 ifeq ($(CONFIG_HAMRADIO
),y
)
158 SUB_DIRS
+= net
/hamradio
159 MOD_SUB_DIRS
+= net
/hamradio
162 ifeq ($(CONFIG_I2C
),y
)
166 ifeq ($(CONFIG_I2C
),m
)
171 include $(TOPDIR
)/Rules.make